AuroraOpenALSoft/OpenAL32/alBuffer.c

1308 lines
40 KiB
C
Raw Normal View History

2007-11-14 02:02:18 +00:00
/**
* OpenAL cross platform audio library
* Copyright (C) 1999-2007 by authors.
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
* Or go to http://www.gnu.org/copyleft/lgpl.html
*/
2008-01-16 22:09:04 +00:00
#include "config.h"
2007-11-14 02:02:18 +00:00
#include <stdlib.h>
#include <stdio.h>
2008-01-06 09:15:44 +00:00
#include <assert.h>
#include <limits.h>
2007-11-14 02:02:18 +00:00
#include "alMain.h"
#include "AL/al.h"
#include "AL/alc.h"
#include "alError.h"
#include "alBuffer.h"
#include "alDatabuffer.h"
#include "alThunk.h"
2007-11-14 02:02:18 +00:00
static ALenum LoadData(ALbuffer *ALBuf, const ALvoid *data, ALsizei size, ALuint freq, ALenum OrigFormat, ALenum NewFormat);
static void ConvertData(ALfloat *dst, const ALvoid *src, ALint origBytes, ALsizei len);
static void ConvertDataRear(ALfloat *dst, const ALvoid *src, ALint origBytes, ALsizei len);
static void ConvertDataIMA4(ALfloat *dst, const ALvoid *src, ALint origChans, ALsizei len);
2010-03-14 05:03:34 +00:00
static void ConvertDataMULaw(ALfloat *dst, const ALvoid *src, ALsizei len);
static void ConvertDataMULawRear(ALfloat *dst, const ALvoid *src, ALsizei len);
#define LookupBuffer(m, k) ((ALbuffer*)LookupUIntMapKey(&(m), (k)))
2010-03-17 03:23:46 +00:00
2007-11-14 02:02:18 +00:00
/*
* Global Variables
*/
static const long g_IMAStep_size[89]={ // IMA ADPCM Stepsize table
7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 23, 25, 28, 31,
34, 37, 41, 45, 50, 55, 60, 66, 73, 80, 88, 97, 107, 118, 130, 143,
157, 173, 190, 209, 230, 253, 279, 307, 337, 371, 408, 449, 494, 544, 598, 658,
724, 796, 876, 963, 1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066, 2272, 2499, 2749, 3024,
3327, 3660, 4026, 4428, 4871, 5358, 5894, 6484, 7132, 7845, 8630, 9493,10442,11487,12635,13899,
15289,16818,18500,20350,22358,24633,27086,29794,32767
};
static const long g_IMACodeword_4[16]={ // IMA4 ADPCM Codeword decode table
1, 3, 5, 7, 9, 11, 13, 15,
-1,-3,-5,-7,-9,-11,-13,-15,
};
static const long g_IMAIndex_adjust_4[16]={ // IMA4 ADPCM Step index adjust decode table
-1,-1,-1,-1, 2, 4, 6, 8,
-1,-1,-1,-1, 2, 4, 6, 8
};
2010-03-14 05:03:34 +00:00
static const ALshort muLawDecompressionTable[256] = {
-32124,-31100,-30076,-29052,-28028,-27004,-25980,-24956,
-23932,-22908,-21884,-20860,-19836,-18812,-17788,-16764,
-15996,-15484,-14972,-14460,-13948,-13436,-12924,-12412,
-11900,-11388,-10876,-10364, -9852, -9340, -8828, -8316,
-7932, -7676, -7420, -7164, -6908, -6652, -6396, -6140,
-5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092,
-3900, -3772, -3644, -3516, -3388, -3260, -3132, -3004,
-2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980,
-1884, -1820, -1756, -1692, -1628, -1564, -1500, -1436,
-1372, -1308, -1244, -1180, -1116, -1052, -988, -924,
-876, -844, -812, -780, -748, -716, -684, -652,
-620, -588, -556, -524, -492, -460, -428, -396,
-372, -356, -340, -324, -308, -292, -276, -260,
-244, -228, -212, -196, -180, -164, -148, -132,
-120, -112, -104, -96, -88, -80, -72, -64,
-56, -48, -40, -32, -24, -16, -8, 0,
32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956,
23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764,
15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412,
11900, 11388, 10876, 10364, 9852, 9340, 8828, 8316,
7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140,
5884, 5628, 5372, 5116, 4860, 4604, 4348, 4092,
3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004,
2876, 2748, 2620, 2492, 2364, 2236, 2108, 1980,
1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436,
1372, 1308, 1244, 1180, 1116, 1052, 988, 924,
876, 844, 812, 780, 748, 716, 684, 652,
620, 588, 556, 524, 492, 460, 428, 396,
372, 356, 340, 324, 308, 292, 276, 260,
244, 228, 212, 196, 180, 164, 148, 132,
120, 112, 104, 96, 88, 80, 72, 64,
56, 48, 40, 32, 24, 16, 8, 0
};
2007-11-14 02:02:18 +00:00
/*
* alGenBuffers(ALsizei n, ALuint *puiBuffers)
*
* Generates n AL Buffers, and stores the Buffers Names in the array pointed to by puiBuffers
*/
AL_API ALvoid AL_APIENTRY alGenBuffers(ALsizei n, ALuint *buffers)
2007-11-14 02:02:18 +00:00
{
ALCcontext *Context;
ALsizei i=0;
Context = GetContextSuspended();
if(!Context) return;
2007-11-14 02:02:18 +00:00
// Check that we are actually generation some Buffers
2010-09-07 23:33:17 +00:00
if(n < 0)
alSetError(Context, AL_INVALID_VALUE);
else
2007-11-14 02:02:18 +00:00
{
2009-08-15 16:14:08 +00:00
ALCdevice *device = Context->Device;
ALenum err;
2009-08-15 16:14:08 +00:00
2007-11-14 02:02:18 +00:00
// Check the pointer is valid (and points to enough memory to store Buffer Names)
if(IsBadWritePtr((void*)buffers, n * sizeof(ALuint)))
alSetError(Context, AL_INVALID_VALUE);
else
2007-11-14 02:02:18 +00:00
{
// Create all the new Buffers
while(i < n)
{
ALbuffer *buffer = calloc(1, sizeof(ALbuffer));
if(!buffer)
2007-11-14 02:02:18 +00:00
{
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_OUT_OF_MEMORY);
alDeleteBuffers(i, buffers);
break;
2007-11-14 02:02:18 +00:00
}
buffer->buffer = (ALuint)ALTHUNK_ADDENTRY(buffer);
err = InsertUIntMapEntry(&device->BufferMap, buffer->buffer,
buffer);
if(err != AL_NO_ERROR)
{
ALTHUNK_REMOVEENTRY(buffer->buffer);
memset(buffer, 0, sizeof(ALbuffer));
free(buffer);
alSetError(Context, err);
alDeleteBuffers(i, buffers);
break;
}
buffers[i++] = buffer->buffer;
}
2007-11-14 02:02:18 +00:00
}
}
ProcessContext(Context);
}
/*
* alDeleteBuffers(ALsizei n, ALuint *puiBuffers)
*
* Deletes the n AL Buffers pointed to by puiBuffers
*/
2010-03-19 21:34:18 +00:00
AL_API ALvoid AL_APIENTRY alDeleteBuffers(ALsizei n, const ALuint *puiBuffers)
2007-11-14 02:02:18 +00:00
{
ALCcontext *Context;
ALbuffer *ALBuf;
ALsizei i;
Context = GetContextSuspended();
if(!Context) return;
2007-11-14 02:02:18 +00:00
// Check we are actually Deleting some Buffers
if(n < 0)
alSetError(Context, AL_INVALID_VALUE);
else
2007-11-14 02:02:18 +00:00
{
2009-08-15 16:14:08 +00:00
ALCdevice *device = Context->Device;
ALboolean bFailed = AL_FALSE;
2009-08-15 16:14:08 +00:00
// Check that all the buffers are valid and can actually be deleted
2010-09-07 23:33:17 +00:00
for(i = 0;i < n;i++)
2007-11-14 02:02:18 +00:00
{
2010-03-17 03:23:46 +00:00
if(!puiBuffers[i])
continue;
// Check for valid Buffer ID (can be NULL buffer)
if((ALBuf=LookupBuffer(device->BufferMap, puiBuffers[i])) != NULL)
2007-11-14 02:02:18 +00:00
{
2010-03-17 03:23:46 +00:00
if(ALBuf->refcount != 0)
2007-11-14 02:02:18 +00:00
{
2010-03-17 03:23:46 +00:00
// Buffer still in use, cannot be deleted
alSetError(Context, AL_INVALID_OPERATION);
bFailed = AL_TRUE;
break;
2007-11-14 02:02:18 +00:00
}
}
else
{
// Invalid Buffer
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_NAME);
bFailed = AL_TRUE;
2010-03-17 03:23:46 +00:00
break;
}
}
2007-11-14 02:02:18 +00:00
// If all the Buffers were valid (and have Reference Counts of 0), then we can delete them
2010-09-07 23:33:17 +00:00
if(!bFailed)
{
2010-09-07 23:33:17 +00:00
for(i = 0;i < n;i++)
2007-11-14 02:02:18 +00:00
{
if((ALBuf=LookupBuffer(device->BufferMap, puiBuffers[i])) != NULL)
2007-11-14 02:02:18 +00:00
{
// Release the memory used to store audio data
free(ALBuf->data);
2007-11-14 02:02:18 +00:00
// Release buffer structure
RemoveUIntMapKey(&device->BufferMap, ALBuf->buffer);
ALTHUNK_REMOVEENTRY(ALBuf->buffer);
memset(ALBuf, 0, sizeof(ALbuffer));
free(ALBuf);
2007-11-14 02:02:18 +00:00
}
}
}
}
ProcessContext(Context);
}
/*
* alIsBuffer(ALuint uiBuffer)
*
* Checks if ulBuffer is a valid Buffer Name
*/
2010-05-19 18:06:13 +00:00
AL_API ALboolean AL_APIENTRY alIsBuffer(ALuint buffer)
2007-11-14 02:02:18 +00:00
{
ALCcontext *Context;
2010-05-19 18:06:13 +00:00
ALboolean result;
2007-11-14 02:02:18 +00:00
Context = GetContextSuspended();
if(!Context) return AL_FALSE;
2007-11-14 02:02:18 +00:00
2010-05-19 18:06:13 +00:00
result = ((!buffer || LookupBuffer(Context->Device->BufferMap, buffer)) ?
AL_TRUE : AL_FALSE);
2007-11-14 02:02:18 +00:00
ProcessContext(Context);
return result;
}
/*
* alBufferData(ALuint buffer,ALenum format,ALvoid *data,ALsizei size,ALsizei freq)
*
* Fill buffer with audio data
*/
2010-03-19 21:34:18 +00:00
AL_API ALvoid AL_APIENTRY alBufferData(ALuint buffer,ALenum format,const ALvoid *data,ALsizei size,ALsizei freq)
2007-11-14 02:02:18 +00:00
{
ALCcontext *Context;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
ALbuffer *ALBuf;
ALvoid *temp;
2010-03-17 00:35:51 +00:00
ALenum err;
2007-11-14 02:02:18 +00:00
Context = GetContextSuspended();
if(!Context) return;
2007-11-14 02:02:18 +00:00
2010-03-17 03:23:46 +00:00
device = Context->Device;
if((ALBuf=LookupBuffer(device->BufferMap, buffer)) == NULL)
alSetError(Context, AL_INVALID_NAME); /* Invalid Buffer Name */
else
2007-11-14 02:02:18 +00:00
{
if(Context->SampleSource)
{
ALintptrEXT offset;
if(Context->SampleSource->state == MAPPED)
{
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_OPERATION);
ProcessContext(Context);
return;
}
offset = (const ALubyte*)data - (ALubyte*)NULL;
data = Context->SampleSource->data + offset;
}
2010-09-07 23:33:17 +00:00
if(size < 0 || freq < 0)
alSetError(Context, AL_INVALID_VALUE);
else if(ALBuf->refcount != 0)
alSetError(Context, AL_INVALID_VALUE);
else
2007-11-14 02:02:18 +00:00
{
switch(format)
{
case AL_FORMAT_MONO8:
case AL_FORMAT_MONO16:
2007-12-29 06:41:14 +00:00
case AL_FORMAT_MONO_FLOAT32:
2010-03-14 05:32:45 +00:00
case AL_FORMAT_MONO_DOUBLE_EXT:
2010-03-17 00:35:51 +00:00
err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_MONO_FLOAT32);
if(err != AL_NO_ERROR)
alSetError(Context, err);
2007-12-29 06:41:14 +00:00
break;
2007-11-14 02:02:18 +00:00
case AL_FORMAT_STEREO8:
case AL_FORMAT_STEREO16:
2007-12-29 06:41:14 +00:00
case AL_FORMAT_STEREO_FLOAT32:
2010-03-14 05:32:45 +00:00
case AL_FORMAT_STEREO_DOUBLE_EXT:
2010-03-17 00:35:51 +00:00
err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_STEREO_FLOAT32);
if(err != AL_NO_ERROR)
alSetError(Context, err);
2007-12-29 06:41:14 +00:00
break;
2007-12-31 13:46:20 +00:00
case AL_FORMAT_REAR8:
case AL_FORMAT_REAR16:
case AL_FORMAT_REAR32: {
ALenum NewFormat = AL_FORMAT_QUAD32;
2007-12-31 13:46:20 +00:00
ALuint NewChannels = aluChannelsFromFormat(NewFormat);
ALuint NewBytes = aluBytesFromFormat(NewFormat);
2007-12-31 13:46:20 +00:00
ALuint OrigBytes = ((format==AL_FORMAT_REAR8) ? 1 :
((format==AL_FORMAT_REAR16) ? 2 :
4));
ALuint64 newsize, allocsize;
2007-12-31 13:46:20 +00:00
if((size%(OrigBytes*2)) != 0)
2007-12-31 13:46:20 +00:00
{
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_VALUE);
2007-12-31 13:46:20 +00:00
break;
}
newsize = size / OrigBytes;
newsize *= 2;
2007-12-31 13:46:20 +00:00
allocsize = (BUFFER_PADDING*NewChannels + newsize)*NewBytes;
if(allocsize > INT_MAX)
{
alSetError(Context, AL_OUT_OF_MEMORY);
break;
}
temp = realloc(ALBuf->data, allocsize);
2008-11-01 23:35:16 +00:00
if(temp)
{
ALBuf->data = temp;
ConvertDataRear(ALBuf->data, data, OrigBytes, newsize);
2008-11-01 23:35:16 +00:00
ALBuf->format = NewFormat;
ALBuf->eOriginalFormat = format;
ALBuf->size = newsize*NewBytes;
2008-11-01 23:35:16 +00:00
ALBuf->frequency = freq;
ALBuf->LoopStart = 0;
ALBuf->LoopEnd = newsize / NewChannels;
ALBuf->OriginalSize = size;
ALBuf->OriginalAlign = OrigBytes * 2;
2007-12-31 13:46:20 +00:00
}
2008-11-01 23:35:16 +00:00
else
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_OUT_OF_MEMORY);
2007-12-31 13:46:20 +00:00
} break;
2008-01-15 00:11:15 +00:00
case AL_FORMAT_QUAD8_LOKI:
case AL_FORMAT_QUAD16_LOKI:
case AL_FORMAT_QUAD8:
case AL_FORMAT_QUAD16:
case AL_FORMAT_QUAD32:
2010-03-17 00:35:51 +00:00
err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_QUAD32);
if(err != AL_NO_ERROR)
alSetError(Context, err);
break;
case AL_FORMAT_51CHN8:
case AL_FORMAT_51CHN16:
case AL_FORMAT_51CHN32:
2010-03-17 00:35:51 +00:00
err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_51CHN32);
if(err != AL_NO_ERROR)
alSetError(Context, err);
break;
case AL_FORMAT_61CHN8:
case AL_FORMAT_61CHN16:
case AL_FORMAT_61CHN32:
2010-03-17 00:35:51 +00:00
err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_61CHN32);
if(err != AL_NO_ERROR)
alSetError(Context, err);
break;
case AL_FORMAT_71CHN8:
case AL_FORMAT_71CHN16:
case AL_FORMAT_71CHN32:
2010-03-17 00:35:51 +00:00
err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_71CHN32);
if(err != AL_NO_ERROR)
alSetError(Context, err);
break;
2007-11-14 02:02:18 +00:00
case AL_FORMAT_MONO_IMA4:
case AL_FORMAT_STEREO_IMA4: {
2010-05-24 10:28:00 +00:00
int Channels = ((format==AL_FORMAT_MONO_IMA4) ? 1 : 2);
ALenum NewFormat = ((Channels==1) ? AL_FORMAT_MONO_FLOAT32 :
AL_FORMAT_STEREO_FLOAT32);
ALuint NewBytes = aluBytesFromFormat(NewFormat);
ALuint64 newsize, allocsize;
2007-11-14 02:02:18 +00:00
// Here is where things vary:
// nVidia and Apple use 64+1 samples per channel per block => block_size=36*chans bytes
// Most PC sound software uses 2040+1 samples per channel per block -> block_size=1024*chans bytes
2010-05-24 10:28:00 +00:00
if((size%(36*Channels)) != 0)
2007-11-14 02:02:18 +00:00
{
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_VALUE);
break;
2007-11-14 02:02:18 +00:00
}
newsize = size / 36;
newsize *= 65;
allocsize = (BUFFER_PADDING*Channels + newsize)*NewBytes;
if(allocsize > INT_MAX)
{
alSetError(Context, AL_OUT_OF_MEMORY);
break;
}
temp = realloc(ALBuf->data, allocsize);
if(temp)
2007-11-14 02:02:18 +00:00
{
ALBuf->data = temp;
ConvertDataIMA4(ALBuf->data, data, Channels, newsize/(65*Channels));
ALBuf->format = NewFormat;
ALBuf->eOriginalFormat = format;
ALBuf->size = newsize*NewBytes;
ALBuf->frequency = freq;
ALBuf->LoopStart = 0;
2010-05-24 10:28:00 +00:00
ALBuf->LoopEnd = newsize / Channels;
ALBuf->OriginalSize = size;
2010-05-24 10:28:00 +00:00
ALBuf->OriginalAlign = 36 * Channels;
2007-11-14 02:02:18 +00:00
}
else
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_OUT_OF_MEMORY);
} break;
2007-11-14 02:02:18 +00:00
2010-03-14 05:03:34 +00:00
case AL_FORMAT_MONO_MULAW:
case AL_FORMAT_STEREO_MULAW:
case AL_FORMAT_QUAD_MULAW:
case AL_FORMAT_51CHN_MULAW:
case AL_FORMAT_61CHN_MULAW:
case AL_FORMAT_71CHN_MULAW: {
int Channels = ((format==AL_FORMAT_MONO_MULAW) ? 1 :
((format==AL_FORMAT_STEREO_MULAW) ? 2 :
((format==AL_FORMAT_QUAD_MULAW) ? 4 :
((format==AL_FORMAT_51CHN_MULAW) ? 6 :
((format==AL_FORMAT_61CHN_MULAW) ? 7 : 8)))));
ALenum NewFormat = ((Channels==1) ? AL_FORMAT_MONO_FLOAT32 :
2010-03-14 05:03:34 +00:00
((Channels==2) ? AL_FORMAT_STEREO_FLOAT32 :
((Channels==4) ? AL_FORMAT_QUAD32 :
((Channels==6) ? AL_FORMAT_51CHN32 :
((Channels==7) ? AL_FORMAT_61CHN32 :
AL_FORMAT_71CHN32)))));
ALuint NewBytes = aluBytesFromFormat(NewFormat);
ALuint64 allocsize;
2010-03-14 05:03:34 +00:00
if((size%(1*Channels)) != 0)
{
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_VALUE);
2010-03-14 05:03:34 +00:00
break;
}
allocsize = (BUFFER_PADDING*Channels + size)*NewBytes;
if(allocsize > INT_MAX)
{
alSetError(Context, AL_OUT_OF_MEMORY);
break;
}
temp = realloc(ALBuf->data, allocsize);
2010-03-14 05:03:34 +00:00
if(temp)
{
ALBuf->data = temp;
ConvertDataMULaw(ALBuf->data, data, size);
ALBuf->format = NewFormat;
ALBuf->eOriginalFormat = format;
ALBuf->size = size*NewBytes;
ALBuf->frequency = freq;
ALBuf->LoopStart = 0;
ALBuf->LoopEnd = size / Channels;
ALBuf->OriginalSize = size;
ALBuf->OriginalAlign = 1 * Channels;
2010-03-14 05:03:34 +00:00
}
else
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_OUT_OF_MEMORY);
2010-03-14 05:03:34 +00:00
} break;
case AL_FORMAT_REAR_MULAW: {
ALenum NewFormat = AL_FORMAT_QUAD32;
2010-03-14 05:03:34 +00:00
ALuint NewChannels = aluChannelsFromFormat(NewFormat);
2010-05-24 10:28:00 +00:00
ALuint NewBytes = aluBytesFromFormat(NewFormat);
ALuint64 newsize, allocsize;
2010-03-14 05:03:34 +00:00
2010-05-24 10:28:00 +00:00
if((size%(1*2)) != 0)
2010-03-14 05:03:34 +00:00
{
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_VALUE);
2010-03-14 05:03:34 +00:00
break;
}
newsize = size * 2;
2010-03-14 05:03:34 +00:00
allocsize = (BUFFER_PADDING*NewChannels + newsize)*NewBytes;
if(allocsize > INT_MAX)
{
alSetError(Context, AL_OUT_OF_MEMORY);
break;
}
temp = realloc(ALBuf->data, allocsize);
2010-03-14 05:03:34 +00:00
if(temp)
{
ALBuf->data = temp;
ConvertDataMULawRear(ALBuf->data, data, newsize);
2010-03-14 05:03:34 +00:00
ALBuf->format = NewFormat;
ALBuf->eOriginalFormat = format;
ALBuf->size = newsize*NewBytes;
2010-03-14 05:03:34 +00:00
ALBuf->frequency = freq;
ALBuf->LoopStart = 0;
ALBuf->LoopEnd = newsize / NewChannels;
ALBuf->OriginalSize = size;
2010-05-24 10:28:00 +00:00
ALBuf->OriginalAlign = 1 * 2;
2010-03-14 05:03:34 +00:00
}
else
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_OUT_OF_MEMORY);
2010-03-14 05:03:34 +00:00
} break;
2007-11-14 02:02:18 +00:00
default:
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_ENUM);
2007-11-14 02:02:18 +00:00
break;
}
}
}
ProcessContext(Context);
}
/*
* alBufferSubDataSOFT(ALuint buffer,ALenum format,ALvoid *data,ALsizei offset,ALsizei length)
*
* Fill buffer with audio data
*/
AL_API ALvoid AL_APIENTRY alBufferSubDataSOFT(ALuint buffer,ALenum format,const ALvoid *data,ALsizei offset,ALsizei length)
{
ALCcontext *Context;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
ALbuffer *ALBuf;
Context = GetContextSuspended();
if(!Context) return;
2010-03-17 03:23:46 +00:00
device = Context->Device;
if((ALBuf=LookupBuffer(device->BufferMap, buffer)) == NULL)
alSetError(Context, AL_INVALID_NAME);
else
{
if(Context->SampleSource)
{
ALintptrEXT offset;
if(Context->SampleSource->state == MAPPED)
{
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_OPERATION);
ProcessContext(Context);
return;
}
offset = (const ALubyte*)data - (ALubyte*)NULL;
data = Context->SampleSource->data + offset;
}
if(length < 0 || offset < 0 || (length > 0 && data == NULL))
2010-03-17 00:35:51 +00:00
alSetError(Context, AL_INVALID_VALUE);
else if(ALBuf->eOriginalFormat != format)
alSetError(Context, AL_INVALID_ENUM);
else if(offset > ALBuf->OriginalSize ||
length > ALBuf->OriginalSize-offset ||
(offset%ALBuf->OriginalAlign) != 0 ||
(length%ALBuf->OriginalAlign) != 0)
alSetError(Context, AL_INVALID_VALUE);
else
{
switch(format)
{
case AL_FORMAT_MONO8:
case AL_FORMAT_MONO16:
case AL_FORMAT_MONO_FLOAT32:
case AL_FORMAT_MONO_DOUBLE_EXT:
case AL_FORMAT_STEREO8:
case AL_FORMAT_STEREO16:
case AL_FORMAT_STEREO_FLOAT32:
case AL_FORMAT_STEREO_DOUBLE_EXT:
case AL_FORMAT_QUAD8_LOKI:
case AL_FORMAT_QUAD16_LOKI:
case AL_FORMAT_QUAD8:
case AL_FORMAT_QUAD16:
case AL_FORMAT_QUAD32:
case AL_FORMAT_51CHN8:
case AL_FORMAT_51CHN16:
case AL_FORMAT_51CHN32:
case AL_FORMAT_61CHN8:
case AL_FORMAT_61CHN16:
case AL_FORMAT_61CHN32:
case AL_FORMAT_71CHN8:
case AL_FORMAT_71CHN16:
case AL_FORMAT_71CHN32: {
ALuint Bytes = aluBytesFromFormat(format);
offset /= Bytes;
length /= Bytes;
ConvertData(&ALBuf->data[offset], data, Bytes, length);
} break;
case AL_FORMAT_REAR8:
case AL_FORMAT_REAR16:
case AL_FORMAT_REAR32: {
ALuint Bytes = ((format==AL_FORMAT_REAR8) ? 1 :
((format==AL_FORMAT_REAR16) ? 2 :
4));
offset /= Bytes;
offset *= 2;
length /= Bytes;
length *= 2;
ConvertDataRear(&ALBuf->data[offset], data, Bytes, length);
} break;
case AL_FORMAT_MONO_IMA4:
case AL_FORMAT_STEREO_IMA4: {
int Channels = aluChannelsFromFormat(ALBuf->format);
// offset -> sample*channel offset, length -> block count
offset /= 36;
offset *= 65;
length /= ALBuf->OriginalAlign;
ConvertDataIMA4(&ALBuf->data[offset], data, Channels, length);
} break;
2010-03-14 05:03:34 +00:00
case AL_FORMAT_MONO_MULAW:
case AL_FORMAT_STEREO_MULAW:
case AL_FORMAT_QUAD_MULAW:
case AL_FORMAT_51CHN_MULAW:
case AL_FORMAT_61CHN_MULAW:
case AL_FORMAT_71CHN_MULAW:
ConvertDataMULaw(&ALBuf->data[offset], data, length);
break;
case AL_FORMAT_REAR_MULAW:
offset *= 2;
length *= 2;
ConvertDataMULawRear(&ALBuf->data[offset], data, length);
break;
default:
alSetError(Context, AL_INVALID_ENUM);
break;
}
}
}
ProcessContext(Context);
}
AL_API ALvoid AL_APIENTRY alBufferSubDataEXT(ALuint buffer,ALenum format,const ALvoid *data,ALsizei offset,ALsizei length)
{
alBufferSubDataSOFT(buffer, format, data, offset, length);
}
2007-11-14 02:02:18 +00:00
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alBufferf(ALuint buffer, ALenum eParam, ALfloat flValue)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
(void)flValue;
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
2010-03-17 03:23:46 +00:00
device = pContext->Device;
if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
2010-09-07 23:36:42 +00:00
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
{
default:
2010-03-17 00:35:51 +00:00
alSetError(pContext, AL_INVALID_ENUM);
2007-11-14 02:02:18 +00:00
break;
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alBuffer3f(ALuint buffer, ALenum eParam, ALfloat flValue1, ALfloat flValue2, ALfloat flValue3)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
(void)flValue1;
(void)flValue2;
(void)flValue3;
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
2010-03-17 03:23:46 +00:00
device = pContext->Device;
if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
{
default:
2010-03-17 00:35:51 +00:00
alSetError(pContext, AL_INVALID_ENUM);
2007-11-14 02:02:18 +00:00
break;
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alBufferfv(ALuint buffer, ALenum eParam, const ALfloat* flValues)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
2010-03-17 03:23:46 +00:00
device = pContext->Device;
if(!flValues)
alSetError(pContext, AL_INVALID_VALUE);
else if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
{
default:
2010-03-17 00:35:51 +00:00
alSetError(pContext, AL_INVALID_ENUM);
2007-11-14 02:02:18 +00:00
break;
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alBufferi(ALuint buffer, ALenum eParam, ALint lValue)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
(void)lValue;
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
2010-03-17 03:23:46 +00:00
device = pContext->Device;
if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
{
default:
2010-03-17 00:35:51 +00:00
alSetError(pContext, AL_INVALID_ENUM);
2007-11-14 02:02:18 +00:00
break;
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alBuffer3i( ALuint buffer, ALenum eParam, ALint lValue1, ALint lValue2, ALint lValue3)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
(void)lValue1;
(void)lValue2;
(void)lValue3;
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
2010-03-17 03:23:46 +00:00
device = pContext->Device;
if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
{
default:
2010-03-17 00:35:51 +00:00
alSetError(pContext, AL_INVALID_ENUM);
2007-11-14 02:02:18 +00:00
break;
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alBufferiv(ALuint buffer, ALenum eParam, const ALint* plValues)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
ALbuffer *ALBuf;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
2010-03-17 03:23:46 +00:00
device = pContext->Device;
2010-05-25 02:02:36 +00:00
if(!plValues)
alSetError(pContext, AL_INVALID_VALUE);
else if((ALBuf=LookupBuffer(device->BufferMap, buffer)) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
{
case AL_LOOP_POINTS:
if(ALBuf->refcount > 0)
alSetError(pContext, AL_INVALID_OPERATION);
else if(plValues[0] < 0 || plValues[1] < 0 ||
plValues[0] >= plValues[1] || ALBuf->size == 0)
alSetError(pContext, AL_INVALID_VALUE);
else
{
ALint maxlen = ALBuf->size / aluFrameSizeFromFormat(ALBuf->format);
if(plValues[0] > maxlen || plValues[1] > maxlen)
alSetError(pContext, AL_INVALID_VALUE);
else
{
ALBuf->LoopStart = plValues[0];
ALBuf->LoopEnd = plValues[1];
}
}
break;
2007-11-14 02:02:18 +00:00
default:
2010-03-17 00:35:51 +00:00
alSetError(pContext, AL_INVALID_ENUM);
2007-11-14 02:02:18 +00:00
break;
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API ALvoid AL_APIENTRY alGetBufferf(ALuint buffer, ALenum eParam, ALfloat *pflValue)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
device = pContext->Device;
if(!pflValue)
alSetError(pContext, AL_INVALID_VALUE);
else if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
2007-11-14 02:02:18 +00:00
{
default:
alSetError(pContext, AL_INVALID_ENUM);
break;
2007-11-14 02:02:18 +00:00
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alGetBuffer3f(ALuint buffer, ALenum eParam, ALfloat* pflValue1, ALfloat* pflValue2, ALfloat* pflValue3)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
device = pContext->Device;
if(!pflValue1 || !pflValue2 || !pflValue3)
alSetError(pContext, AL_INVALID_VALUE);
else if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
2007-11-14 02:02:18 +00:00
{
default:
alSetError(pContext, AL_INVALID_ENUM);
break;
2007-11-14 02:02:18 +00:00
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alGetBufferfv(ALuint buffer, ALenum eParam, ALfloat* pflValues)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
device = pContext->Device;
if(!pflValues)
alSetError(pContext, AL_INVALID_VALUE);
else if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
2007-11-14 02:02:18 +00:00
{
default:
alSetError(pContext, AL_INVALID_ENUM);
break;
2007-11-14 02:02:18 +00:00
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API ALvoid AL_APIENTRY alGetBufferi(ALuint buffer, ALenum eParam, ALint *plValue)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALbuffer *pBuffer;
ALCdevice *device;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
device = pContext->Device;
if(!plValue)
alSetError(pContext, AL_INVALID_VALUE);
else if((pBuffer=LookupBuffer(device->BufferMap, buffer)) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
2007-11-14 02:02:18 +00:00
{
case AL_FREQUENCY:
*plValue = pBuffer->frequency;
break;
2007-11-14 02:02:18 +00:00
case AL_BITS:
*plValue = aluBytesFromFormat(pBuffer->format) * 8;
break;
2007-11-14 02:02:18 +00:00
case AL_CHANNELS:
*plValue = aluChannelsFromFormat(pBuffer->format);
break;
2007-11-14 02:02:18 +00:00
case AL_SIZE:
*plValue = pBuffer->size;
break;
2007-11-14 02:02:18 +00:00
default:
alSetError(pContext, AL_INVALID_ENUM);
break;
2007-11-14 02:02:18 +00:00
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alGetBuffer3i(ALuint buffer, ALenum eParam, ALint* plValue1, ALint* plValue2, ALint* plValue3)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
device = pContext->Device;
if(!plValue1 || !plValue2 || !plValue3)
alSetError(pContext, AL_INVALID_VALUE);
else if(LookupBuffer(device->BufferMap, buffer) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
2007-11-14 02:02:18 +00:00
{
default:
alSetError(pContext, AL_INVALID_ENUM);
break;
2007-11-14 02:02:18 +00:00
}
}
ProcessContext(pContext);
}
2010-03-19 21:34:18 +00:00
AL_API void AL_APIENTRY alGetBufferiv(ALuint buffer, ALenum eParam, ALint* plValues)
2007-11-14 02:02:18 +00:00
{
ALCcontext *pContext;
2010-03-17 03:23:46 +00:00
ALCdevice *device;
ALbuffer *ALBuf;
2007-11-14 02:02:18 +00:00
pContext = GetContextSuspended();
if(!pContext) return;
2007-11-14 02:02:18 +00:00
device = pContext->Device;
if(!plValues)
alSetError(pContext, AL_INVALID_VALUE);
else if((ALBuf=LookupBuffer(device->BufferMap, buffer)) == NULL)
alSetError(pContext, AL_INVALID_NAME);
else
2007-11-14 02:02:18 +00:00
{
switch(eParam)
2007-11-14 02:02:18 +00:00
{
case AL_FREQUENCY:
case AL_BITS:
case AL_CHANNELS:
case AL_SIZE:
alGetBufferi(buffer, eParam, plValues);
break;
2007-11-14 02:02:18 +00:00
case AL_LOOP_POINTS:
plValues[0] = ALBuf->LoopStart;
plValues[1] = ALBuf->LoopEnd;
break;
default:
alSetError(pContext, AL_INVALID_ENUM);
break;
2007-11-14 02:02:18 +00:00
}
}
ProcessContext(pContext);
}
/*
* LoadData
*
* Loads the specified data into the buffer, using the specified formats.
* Currently, the new format must be 32-bit float, and must have the same
* channel configuration as the original format. This does NOT handle
* compressed formats (eg. IMA4).
*/
static ALenum LoadData(ALbuffer *ALBuf, const ALvoid *data, ALsizei size, ALuint freq, ALenum OrigFormat, ALenum NewFormat)
{
ALuint NewBytes = aluBytesFromFormat(NewFormat);
ALuint NewChannels = aluChannelsFromFormat(NewFormat);
ALuint OrigBytes = aluBytesFromFormat(OrigFormat);
ALuint OrigChannels = aluChannelsFromFormat(OrigFormat);
ALuint64 newsize, allocsize;
ALvoid *temp;
assert(NewBytes == 4);
assert(NewChannels == OrigChannels);
2010-09-07 23:33:17 +00:00
if((size%(OrigBytes*OrigChannels)) != 0)
2010-03-17 00:35:51 +00:00
return AL_INVALID_VALUE;
// Allocate extra padding samples
newsize = size / OrigBytes;
allocsize = (BUFFER_PADDING*NewChannels + newsize)*NewBytes;
if(allocsize > INT_MAX)
return AL_OUT_OF_MEMORY;
temp = realloc(ALBuf->data, allocsize);
if(!temp) return AL_OUT_OF_MEMORY;
2010-03-17 00:35:51 +00:00
ALBuf->data = temp;
// Samples are converted here
ConvertData(ALBuf->data, data, OrigBytes, newsize);
2010-03-17 00:35:51 +00:00
ALBuf->format = NewFormat;
ALBuf->eOriginalFormat = OrigFormat;
ALBuf->size = newsize*NewBytes;
2010-03-17 00:35:51 +00:00
ALBuf->frequency = freq;
ALBuf->LoopStart = 0;
ALBuf->LoopEnd = newsize / NewChannels;
ALBuf->OriginalSize = size;
ALBuf->OriginalAlign = OrigBytes * OrigChannels;
2010-03-17 00:35:51 +00:00
return AL_NO_ERROR;
}
static void ConvertData(ALfloat *dst, const ALvoid *src, ALint origBytes, ALsizei len)
{
ALsizei i;
ALint smp;
if(src == NULL)
return;
switch(origBytes)
{
case 1:
for(i = 0;i < len;i++)
{
smp = ((ALubyte*)src)[i];
dst[i] = ((smp < 0x80) ? ((smp-128)/128.0f) : ((smp-128)/127.0f));
}
break;
2007-12-29 06:41:14 +00:00
case 2:
for(i = 0;i < len;i++)
{
smp = ((ALshort*)src)[i];
dst[i] = ((smp < 0) ? (smp/32768.0f) : (smp/32767.0f));
}
break;
2007-12-29 06:41:14 +00:00
case 4:
for(i = 0;i < len;i++)
dst[i] = ((ALfloat*)src)[i];
break;
2010-03-14 05:32:45 +00:00
case 8:
for(i = 0;i < len;i++)
dst[i] = ((ALdouble*)src)[i];
break;
default:
assert(0);
}
}
static void ConvertDataRear(ALfloat *dst, const ALvoid *src, ALint origBytes, ALsizei len)
{
ALsizei i;
ALint smp;
if(src == NULL)
return;
switch(origBytes)
{
case 1:
for(i = 0;i < len;i+=4)
{
dst[i+0] = 0;
dst[i+1] = 0;
smp = ((ALubyte*)src)[i/2+0];
dst[i+2] = ((smp < 0x80) ? ((smp-128)/128.0f) : ((smp-128)/127.0f));
smp = ((ALubyte*)src)[i/2+1];
dst[i+3] = ((smp < 0x80) ? ((smp-128)/128.0f) : ((smp-128)/127.0f));
}
break;
case 2:
for(i = 0;i < len;i+=4)
{
dst[i+0] = 0;
dst[i+1] = 0;
smp = ((ALshort*)src)[i/2+0];
dst[i+2] = ((smp < 0) ? (smp/32768.0f) : (smp/32767.0f));
smp = ((ALshort*)src)[i/2+1];
dst[i+3] = ((smp < 0) ? (smp/32768.0f) : (smp/32767.0f));
}
break;
case 4:
for(i = 0;i < len;i+=4)
{
dst[i+0] = 0;
dst[i+1] = 0;
dst[i+2] = ((ALfloat*)src)[i/2+0];
dst[i+3] = ((ALfloat*)src)[i/2+1];
}
break;
default:
assert(0);
}
}
static void ConvertDataIMA4(ALfloat *dst, const ALvoid *src, ALint chans, ALsizei len)
{
const ALubyte *IMAData;
ALint Sample[2],Index[2];
ALuint IMACode[2];
ALsizei i,j,k,c;
if(src == NULL)
return;
IMAData = src;
for(i = 0;i < len;i++)
{
for(c = 0;c < chans;c++)
{
2010-05-25 00:40:16 +00:00
Sample[c] = *(IMAData++);
Sample[c] |= *(IMAData++) << 8;
Sample[c] = (Sample[c]^0x8000) - 32768;
2010-05-25 00:40:16 +00:00
Index[c] = *(IMAData++);
Index[c] |= *(IMAData++) << 8;
Index[c] = (Index[c]^0x8000) - 32768;
Index[c] = ((Index[c]<0) ? 0 : Index[c]);
Index[c] = ((Index[c]>88) ? 88 : Index[c]);
dst[i*65*chans + c] = ((Sample[c] < 0) ? (Sample[c]/32768.0f) : (Sample[c]/32767.0f));
}
for(j = 1;j < 65;j += 8)
{
for(c = 0;c < chans;c++)
{
IMACode[c] = *(IMAData++);
IMACode[c] |= *(IMAData++) << 8;
IMACode[c] |= *(IMAData++) << 16;
IMACode[c] |= *(IMAData++) << 24;
}
for(k = 0;k < 8;k++)
{
for(c = 0;c < chans;c++)
{
Sample[c] += ((g_IMAStep_size[Index[c]]*g_IMACodeword_4[IMACode[c]&15])/8);
Index[c] += g_IMAIndex_adjust_4[IMACode[c]&15];
if(Sample[c] < -32768) Sample[c] = -32768;
else if(Sample[c] > 32767) Sample[c] = 32767;
if(Index[c]<0) Index[c] = 0;
else if(Index[c]>88) Index[c] = 88;
dst[(i*65+j+k)*chans + c] = ((Sample[c] < 0) ? (Sample[c]/32768.0f) : (Sample[c]/32767.0f));
IMACode[c] >>= 4;
}
}
}
}
}
2007-11-14 02:02:18 +00:00
2010-03-14 05:03:34 +00:00
static void ConvertDataMULaw(ALfloat *dst, const ALvoid *src, ALsizei len)
{
ALsizei i;
ALint smp;
if(src == NULL)
return;
2010-03-14 05:03:34 +00:00
for(i = 0;i < len;i++)
{
smp = muLawDecompressionTable[((ALubyte*)src)[i]];
dst[i] = ((smp < 0) ? (smp/32768.0f) : (smp/32767.0f));
}
}
static void ConvertDataMULawRear(ALfloat *dst, const ALvoid *src, ALsizei len)
{
ALsizei i;
ALint smp;
if(src == NULL)
return;
2010-03-14 05:03:34 +00:00
for(i = 0;i < len;i+=4)
{
dst[i+0] = 0;
dst[i+1] = 0;
smp = muLawDecompressionTable[((ALubyte*)src)[i/2+0]];
dst[i+2] = ((smp < 0) ? (smp/32768.0f) : (smp/32767.0f));
smp = muLawDecompressionTable[((ALubyte*)src)[i/2+1]];
dst[i+3] = ((smp < 0) ? (smp/32768.0f) : (smp/32767.0f));
}
}
2007-11-14 02:02:18 +00:00
/*
* ReleaseALBuffers()
*
* INTERNAL FN : Called by DLLMain on exit to destroy any buffers that still exist
*/
2009-08-15 16:14:08 +00:00
ALvoid ReleaseALBuffers(ALCdevice *device)
2007-11-14 02:02:18 +00:00
{
ALsizei i;
for(i = 0;i < device->BufferMap.size;i++)
2007-11-14 02:02:18 +00:00
{
ALbuffer *temp = device->BufferMap.array[i].value;
device->BufferMap.array[i].value = NULL;
2010-03-21 04:49:02 +00:00
2007-11-14 02:02:18 +00:00
// Release sample data
2010-03-21 04:49:02 +00:00
free(temp->data);
2007-11-14 02:02:18 +00:00
// Release Buffer structure
2010-03-21 04:49:02 +00:00
ALTHUNK_REMOVEENTRY(temp->buffer);
memset(temp, 0, sizeof(ALbuffer));
free(temp);
2007-11-14 02:02:18 +00:00
}
}