aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-02-10 06:20:16 -0800
committerChris Robinson <[email protected]>2017-02-10 06:20:16 -0800
commite92229f8395979591a14a980543d92aa4e7489c0 (patch)
tree6f0e6a9e203662e9cbd64e6ced8fa29f6f31dcee /Alc/ALu.c
parent5bd63ff03d324f772875611325ee10c8a8df1c3c (diff)
Fix more uses of unsigned sizes and offsets
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 67f61f07..29097c2a 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -1369,9 +1369,9 @@ static inline ALubyte aluF2UB(ALfloat val)
#define DECL_TEMPLATE(T, func) \
static void Write_##T(ALfloatBUFFERSIZE *InBuffer, ALvoid *OutBuffer, \
- ALuint SamplesToDo, ALuint numchans) \
+ ALsizei SamplesToDo, ALsizei numchans) \
{ \
- ALuint i, j; \
+ ALsizei i, j; \
for(j = 0;j < numchans;j++) \
{ \
const ALfloat *in = InBuffer[j]; \
@@ -1394,7 +1394,7 @@ DECL_TEMPLATE(ALbyte, aluF2B)
void aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
{
- ALuint SamplesToDo;
+ ALsizei SamplesToDo;
ALvoice *voice, *voice_end;
ALeffectslot *slot;
ALsource *source;
@@ -1406,7 +1406,7 @@ void aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
while(size > 0)
{
- SamplesToDo = minu(size, BUFFERSIZE);
+ SamplesToDo = mini(size, BUFFERSIZE);
for(c = 0;c < device->Dry.NumChannels;c++)
memset(device->Dry.Buffer[c], 0, SamplesToDo*sizeof(ALfloat));
if(device->Dry.Buffer != device->RealOut.Buffer)
@@ -1559,7 +1559,7 @@ void aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
if(buffer)
{
ALfloat (*OutBuffer)[BUFFERSIZE] = device->RealOut.Buffer;
- ALuint OutChannels = device->RealOut.NumChannels;
+ ALsizei OutChannels = device->RealOut.NumChannels;
#define WRITE(T, a, b, c, d) do { \
Write_##T((a), (b), (c), (d)); \