2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2007 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
41 RingBuffer
*CreateRingBuffer(ALsizei frame_size
, ALsizei length
)
43 RingBuffer
*ring
= calloc(1, sizeof(*ring
));
46 ring
->frame_size
= frame_size
;
47 ring
->length
= length
+1;
49 ring
->mem
= malloc((length
+1)*frame_size
);
56 InitializeCriticalSection(&ring
->cs
);
61 void DestroyRingBuffer(RingBuffer
*ring
)
65 DeleteCriticalSection(&ring
->cs
);
71 ALsizei
RingBufferSize(RingBuffer
*ring
)
75 EnterCriticalSection(&ring
->cs
);
76 s
= (ring
->write_pos
-ring
->read_pos
-1+ring
->length
) % ring
->length
;
77 LeaveCriticalSection(&ring
->cs
);
82 void WriteRingBuffer(RingBuffer
*ring
, const ALubyte
*data
, ALsizei len
)
86 EnterCriticalSection(&ring
->cs
);
88 remain
= ring
->length
- ring
->write_pos
;
89 if((ring
->read_pos
-ring
->write_pos
+ring
->length
)%ring
->length
< len
)
90 ring
->read_pos
= (ring
->write_pos
+len
) % ring
->length
;
94 memcpy(ring
->mem
+(ring
->write_pos
*ring
->frame_size
), data
, remain
*ring
->frame_size
);
95 memcpy(ring
->mem
, data
+(remain
*ring
->frame_size
), (len
-remain
)*ring
->frame_size
);
98 memcpy(ring
->mem
+(ring
->write_pos
*ring
->frame_size
), data
, len
*ring
->frame_size
);
100 ring
->write_pos
+= len
;
101 ring
->write_pos
%= ring
->length
;
103 LeaveCriticalSection(&ring
->cs
);
106 void ReadRingBuffer(RingBuffer
*ring
, ALubyte
*data
, ALsizei len
)
110 EnterCriticalSection(&ring
->cs
);
112 remain
= ring
->length
- ring
->read_pos
;
115 memcpy(data
, ring
->mem
+(ring
->read_pos
*ring
->frame_size
), remain
*ring
->frame_size
);
116 memcpy(data
+(remain
*ring
->frame_size
), ring
->mem
, (len
-remain
)*ring
->frame_size
);
119 memcpy(data
, ring
->mem
+(ring
->read_pos
*ring
->frame_size
), len
*ring
->frame_size
);
121 ring
->read_pos
+= len
;
122 ring
->read_pos
%= ring
->length
;
124 LeaveCriticalSection(&ring
->cs
);