From 332d66c18301b913d46e22fd24c3d4782bea1568 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 29 Aug 2012 01:40:42 -0700 Subject: Make sure device buffers are 16-byte aligned --- Alc/ALc.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Alc/ALc.c') diff --git a/Alc/ALc.c b/Alc/ALc.c index 396dbe24..77316843 100644 --- a/Alc/ALc.c +++ b/Alc/ALc.c @@ -1744,7 +1744,7 @@ static ALCvoid FreeDevice(ALCdevice *device) DeleteCriticalSection(&device->Mutex); - free(device); + al_free(device); } @@ -2640,7 +2640,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) if(deviceName && (!deviceName[0] || strcasecmp(deviceName, alcDefaultName) == 0 || strcasecmp(deviceName, "openal-soft") == 0)) deviceName = NULL; - device = calloc(1, sizeof(ALCdevice)+sizeof(ALeffectslot)); + device = al_calloc(16, sizeof(ALCdevice)+sizeof(ALeffectslot)); if(!device) { alcSetError(NULL, ALC_OUT_OF_MEMORY); @@ -2816,7 +2816,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName) { UnlockLists(); DeleteCriticalSection(&device->Mutex); - free(device); + al_free(device); alcSetError(NULL, err); return NULL; } @@ -2910,7 +2910,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcCaptureOpenDevice(const ALCchar *deviceName, if(deviceName && (!deviceName[0] || strcasecmp(deviceName, alcDefaultName) == 0 || strcasecmp(deviceName, "openal-soft") == 0)) deviceName = NULL; - device = calloc(1, sizeof(ALCdevice)); + device = al_calloc(16, sizeof(ALCdevice)); if(!device) { alcSetError(NULL, ALC_OUT_OF_MEMORY); @@ -2937,7 +2937,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcCaptureOpenDevice(const ALCchar *deviceName, if(DecomposeDevFormat(format, &device->FmtChans, &device->FmtType) == AL_FALSE) { DeleteCriticalSection(&device->Mutex); - free(device); + al_free(device); alcSetError(NULL, ALC_INVALID_ENUM); return NULL; } @@ -2950,7 +2950,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcCaptureOpenDevice(const ALCchar *deviceName, { UnlockLists(); DeleteCriticalSection(&device->Mutex); - free(device); + al_free(device); alcSetError(NULL, err); return NULL; } @@ -3065,7 +3065,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcLoopbackOpenDeviceSOFT(const ALCchar *deviceN return NULL; } - device = calloc(1, sizeof(ALCdevice)); + device = al_calloc(16, sizeof(ALCdevice)); if(!device) { alcSetError(NULL, ALC_OUT_OF_MEMORY); -- cgit v1.2.3