Call MixSource directly, instead of through a function pointer

This commit is contained in:
Chris Robinson 2010-11-25 23:09:18 -08:00
parent 30820c1bde
commit e1c0b5ea24
3 changed files with 1 additions and 7 deletions

View File

@ -718,7 +718,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
(*src)->NeedsUpdate = AL_FALSE;
}
ALsource_Mix(*src, device, SamplesToDo);
MixSource(*src, device, SamplesToDo);
src++;
}

View File

@ -99,13 +99,11 @@ typedef struct ALsource
} Params;
ALvoid (*Update)(struct ALsource *self, const ALCcontext *context);
ALvoid (*Mix)(struct ALsource *self, ALCdevice *Device, ALuint SamplesToDo);
// Index to itself
ALuint source;
} ALsource;
#define ALsource_Update(s,a) ((s)->Update(s,a))
#define ALsource_Mix(s,a,b) ((s)->Mix(s,a,b))
ALvoid ReleaseALSources(ALCcontext *Context);

View File

@ -560,8 +560,6 @@ AL_API ALvoid AL_APIENTRY alSourcei(ALuint source,ALenum eParam,ALint lValue)
else
Source->Update = CalcNonAttnSourceParams;
Source->Mix = MixSource;
// Increment reference counter for buffer
buffer->refcount++;
}
@ -1602,8 +1600,6 @@ AL_API ALvoid AL_APIENTRY alSourceQueueBuffers(ALuint source, ALsizei n, const A
else
Source->Update = CalcNonAttnSourceParams;
Source->Mix = MixSource;
Source->NeedsUpdate = AL_TRUE;
}
else if(Frequency != buffer->frequency || Format != buffer->eOriginalFormat)