1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300 |
- /**
- * 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
- */
- #include "config.h"
- #include <stdlib.h>
- #include <stdio.h>
- #include <assert.h>
- #include <limits.h>
- #include "alMain.h"
- #include "AL/al.h"
- #include "AL/alc.h"
- #include "alError.h"
- #include "alBuffer.h"
- #include "alDatabuffer.h"
- #include "alThunk.h"
- 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);
- 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)))
- /*
- * 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
- };
- 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
- };
- /*
- * 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)
- {
- ALCcontext *Context;
- ALsizei i=0;
- Context = GetContextSuspended();
- if(!Context) return;
- // Check that we are actually generation some Buffers
- if(n > 0)
- {
- ALCdevice *device = Context->Device;
- ALenum err;
- // 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
- {
- // Create all the new Buffers
- while(i < n)
- {
- ALbuffer *buffer = calloc(1, sizeof(ALbuffer));
- if(!buffer)
- {
- alSetError(Context, AL_OUT_OF_MEMORY);
- alDeleteBuffers(i, buffers);
- break;
- }
- 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;
- }
- }
- }
- ProcessContext(Context);
- }
- /*
- * alDeleteBuffers(ALsizei n, ALuint *puiBuffers)
- *
- * Deletes the n AL Buffers pointed to by puiBuffers
- */
- AL_API ALvoid AL_APIENTRY alDeleteBuffers(ALsizei n, const ALuint *puiBuffers)
- {
- ALCcontext *Context;
- ALbuffer *ALBuf;
- ALsizei i;
- Context = GetContextSuspended();
- if(!Context) return;
- // Check we are actually Deleting some Buffers
- if(n < 0)
- alSetError(Context, AL_INVALID_VALUE);
- else
- {
- ALCdevice *device = Context->Device;
- ALboolean bFailed = AL_FALSE;
- // Check that all the buffers are valid and can actually be deleted
- for (i = 0; i < n; i++)
- {
- if(!puiBuffers[i])
- continue;
- // Check for valid Buffer ID (can be NULL buffer)
- if((ALBuf=LookupBuffer(device->BufferMap, puiBuffers[i])) != NULL)
- {
- if(ALBuf->refcount != 0)
- {
- // Buffer still in use, cannot be deleted
- alSetError(Context, AL_INVALID_OPERATION);
- bFailed = AL_TRUE;
- break;
- }
- }
- else
- {
- // Invalid Buffer
- alSetError(Context, AL_INVALID_NAME);
- bFailed = AL_TRUE;
- break;
- }
- }
- // If all the Buffers were valid (and have Reference Counts of 0), then we can delete them
- if (!bFailed)
- {
- for (i = 0; i < n; i++)
- {
- if((ALBuf=LookupBuffer(device->BufferMap, puiBuffers[i])) != NULL)
- {
- // Release the memory used to store audio data
- free(ALBuf->data);
- // Release buffer structure
- RemoveUIntMapKey(&device->BufferMap, ALBuf->buffer);
- ALTHUNK_REMOVEENTRY(ALBuf->buffer);
- memset(ALBuf, 0, sizeof(ALbuffer));
- free(ALBuf);
- }
- }
- }
- }
- ProcessContext(Context);
- }
- /*
- * alIsBuffer(ALuint uiBuffer)
- *
- * Checks if ulBuffer is a valid Buffer Name
- */
- AL_API ALboolean AL_APIENTRY alIsBuffer(ALuint buffer)
- {
- ALCcontext *Context;
- ALboolean result;
- Context = GetContextSuspended();
- if(!Context) return AL_FALSE;
- result = ((!buffer || LookupBuffer(Context->Device->BufferMap, buffer)) ?
- AL_TRUE : AL_FALSE);
- ProcessContext(Context);
- return result;
- }
- /*
- * alBufferData(ALuint buffer,ALenum format,ALvoid *data,ALsizei size,ALsizei freq)
- *
- * Fill buffer with audio data
- */
- AL_API ALvoid AL_APIENTRY alBufferData(ALuint buffer,ALenum format,const ALvoid *data,ALsizei size,ALsizei freq)
- {
- ALCcontext *Context;
- ALCdevice *device;
- ALbuffer *ALBuf;
- ALvoid *temp;
- ALenum err;
- Context = GetContextSuspended();
- if(!Context) return;
- device = Context->Device;
- if((ALBuf=LookupBuffer(device->BufferMap, buffer)) == NULL)
- alSetError(Context, AL_INVALID_NAME); /* Invalid Buffer Name */
- else
- {
- if(Context->SampleSource)
- {
- ALintptrEXT offset;
- if(Context->SampleSource->state == MAPPED)
- {
- alSetError(Context, AL_INVALID_OPERATION);
- ProcessContext(Context);
- return;
- }
- offset = (const ALubyte*)data - (ALubyte*)NULL;
- data = Context->SampleSource->data + offset;
- }
- if(size < 0)
- alSetError(Context, AL_INVALID_VALUE);
- else if(ALBuf->refcount != 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:
- err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_MONO_FLOAT32);
- if(err != AL_NO_ERROR)
- alSetError(Context, err);
- break;
- case AL_FORMAT_STEREO8:
- case AL_FORMAT_STEREO16:
- case AL_FORMAT_STEREO_FLOAT32:
- case AL_FORMAT_STEREO_DOUBLE_EXT:
- err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_STEREO_FLOAT32);
- if(err != AL_NO_ERROR)
- alSetError(Context, err);
- break;
- case AL_FORMAT_REAR8:
- case AL_FORMAT_REAR16:
- case AL_FORMAT_REAR32: {
- ALenum NewFormat = AL_FORMAT_QUAD32;
- ALuint NewChannels = aluChannelsFromFormat(NewFormat);
- ALuint NewBytes = aluBytesFromFormat(NewFormat);
- ALuint OrigBytes = ((format==AL_FORMAT_REAR8) ? 1 :
- ((format==AL_FORMAT_REAR16) ? 2 :
- 4));
- ALuint64 newsize, allocsize;
- if((size%(OrigBytes*2)) != 0)
- {
- alSetError(Context, AL_INVALID_VALUE);
- break;
- }
- newsize = size / OrigBytes;
- newsize *= 2;
- allocsize = (BUFFER_PADDING*NewChannels + newsize)*NewBytes;
- if(allocsize > INT_MAX)
- {
- alSetError(Context, AL_OUT_OF_MEMORY);
- break;
- }
- temp = realloc(ALBuf->data, allocsize);
- if(temp)
- {
- ALBuf->data = temp;
- ConvertDataRear(ALBuf->data, data, OrigBytes, newsize);
- ALBuf->format = NewFormat;
- ALBuf->eOriginalFormat = format;
- ALBuf->size = newsize*NewBytes;
- ALBuf->frequency = freq;
- ALBuf->LoopStart = 0;
- ALBuf->LoopEnd = newsize / NewChannels;
- ALBuf->OriginalSize = size;
- ALBuf->OriginalAlign = OrigBytes * 2;
- }
- else
- alSetError(Context, AL_OUT_OF_MEMORY);
- } break;
- case AL_FORMAT_QUAD8_LOKI:
- case AL_FORMAT_QUAD16_LOKI:
- case AL_FORMAT_QUAD8:
- case AL_FORMAT_QUAD16:
- case AL_FORMAT_QUAD32:
- 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:
- 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:
- 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:
- err = LoadData(ALBuf, data, size, freq, format, AL_FORMAT_71CHN32);
- if(err != AL_NO_ERROR)
- alSetError(Context, err);
- break;
- case AL_FORMAT_MONO_IMA4:
- case AL_FORMAT_STEREO_IMA4: {
- 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;
- // 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
- if((size%(36*Channels)) != 0)
- {
- alSetError(Context, AL_INVALID_VALUE);
- break;
- }
- 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)
- {
- 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;
- ALBuf->LoopEnd = newsize / Channels;
- ALBuf->OriginalSize = size;
- ALBuf->OriginalAlign = 36 * Channels;
- }
- else
- alSetError(Context, AL_OUT_OF_MEMORY);
- } break;
- 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 :
- ((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;
- if((size%(1*Channels)) != 0)
- {
- alSetError(Context, AL_INVALID_VALUE);
- break;
- }
- allocsize = (BUFFER_PADDING*Channels + size)*NewBytes;
- if(allocsize > INT_MAX)
- {
- alSetError(Context, AL_OUT_OF_MEMORY);
- break;
- }
- temp = realloc(ALBuf->data, allocsize);
- 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;
- }
- else
- alSetError(Context, AL_OUT_OF_MEMORY);
- } break;
- case AL_FORMAT_REAR_MULAW: {
- ALenum NewFormat = AL_FORMAT_QUAD32;
- ALuint NewChannels = aluChannelsFromFormat(NewFormat);
- ALuint NewBytes = aluBytesFromFormat(NewFormat);
- ALuint64 newsize, allocsize;
- if((size%(1*2)) != 0)
- {
- alSetError(Context, AL_INVALID_VALUE);
- break;
- }
- newsize = size * 2;
- allocsize = (BUFFER_PADDING*NewChannels + newsize)*NewBytes;
- if(allocsize > INT_MAX)
- {
- alSetError(Context, AL_OUT_OF_MEMORY);
- break;
- }
- temp = realloc(ALBuf->data, allocsize);
- if(temp)
- {
- ALBuf->data = temp;
- ConvertDataMULawRear(ALBuf->data, data, newsize);
- ALBuf->format = NewFormat;
- ALBuf->eOriginalFormat = format;
- ALBuf->size = newsize*NewBytes;
- ALBuf->frequency = freq;
- ALBuf->LoopStart = 0;
- ALBuf->LoopEnd = newsize / NewChannels;
- ALBuf->OriginalSize = size;
- ALBuf->OriginalAlign = 1 * 2;
- }
- else
- alSetError(Context, AL_OUT_OF_MEMORY);
- } break;
- default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
- }
- }
- }
- ProcessContext(Context);
- }
- /*
- * alBufferSubDataEXT(ALuint buffer,ALenum format,ALvoid *data,ALsizei offset,ALsizei length)
- *
- * Fill buffer with audio data
- */
- AL_API ALvoid AL_APIENTRY alBufferSubDataEXT(ALuint buffer,ALenum format,const ALvoid *data,ALsizei offset,ALsizei length)
- {
- ALCcontext *Context;
- ALCdevice *device;
- ALbuffer *ALBuf;
- Context = GetContextSuspended();
- if(!Context) return;
- 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)
- {
- 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))
- alSetError(Context, AL_INVALID_VALUE);
- else if(ALBuf->eOriginalFormat != format)
- alSetError(Context, AL_INVALID_ENUM);
- else if(offset+length < offset ||
- offset+length > ALBuf->OriginalSize ||
- (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;
- 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 void AL_APIENTRY alBufferf(ALuint buffer, ALenum eParam, ALfloat flValue)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- (void)flValue;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(LookupBuffer(device->BufferMap, buffer) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alBuffer3f(ALuint buffer, ALenum eParam, ALfloat flValue1, ALfloat flValue2, ALfloat flValue3)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- (void)flValue1;
- (void)flValue2;
- (void)flValue3;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(LookupBuffer(device->BufferMap, buffer) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alBufferfv(ALuint buffer, ALenum eParam, const ALfloat* flValues)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(!flValues)
- alSetError(pContext, AL_INVALID_VALUE);
- else if(LookupBuffer(device->BufferMap, buffer) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alBufferi(ALuint buffer, ALenum eParam, ALint lValue)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- (void)lValue;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(LookupBuffer(device->BufferMap, buffer) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alBuffer3i( ALuint buffer, ALenum eParam, ALint lValue1, ALint lValue2, ALint lValue3)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- (void)lValue1;
- (void)lValue2;
- (void)lValue3;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(LookupBuffer(device->BufferMap, buffer) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alBufferiv(ALuint buffer, ALenum eParam, const ALint* plValues)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- ALbuffer *ALBuf;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(!plValues)
- alSetError(pContext, AL_INVALID_VALUE);
- else if((ALBuf=LookupBuffer(device->BufferMap, buffer)) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- 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;
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API ALvoid AL_APIENTRY alGetBufferf(ALuint buffer, ALenum eParam, ALfloat *pflValue)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(!pflValue)
- alSetError(pContext, AL_INVALID_VALUE);
- else if(LookupBuffer(device->BufferMap, buffer) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alGetBuffer3f(ALuint buffer, ALenum eParam, ALfloat* pflValue1, ALfloat* pflValue2, ALfloat* pflValue3)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- pContext = GetContextSuspended();
- if(!pContext) return;
- 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
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alGetBufferfv(ALuint buffer, ALenum eParam, ALfloat* pflValues)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(!pflValues)
- alSetError(pContext, AL_INVALID_VALUE);
- else if(LookupBuffer(device->BufferMap, buffer) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API ALvoid AL_APIENTRY alGetBufferi(ALuint buffer, ALenum eParam, ALint *plValue)
- {
- ALCcontext *pContext;
- ALbuffer *pBuffer;
- ALCdevice *device;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(!plValue)
- alSetError(pContext, AL_INVALID_VALUE);
- else if((pBuffer=LookupBuffer(device->BufferMap, buffer)) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- case AL_FREQUENCY:
- *plValue = pBuffer->frequency;
- break;
- case AL_BITS:
- *plValue = aluBytesFromFormat(pBuffer->format) * 8;
- break;
- case AL_CHANNELS:
- *plValue = aluChannelsFromFormat(pBuffer->format);
- break;
- case AL_SIZE:
- *plValue = pBuffer->size;
- break;
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alGetBuffer3i(ALuint buffer, ALenum eParam, ALint* plValue1, ALint* plValue2, ALint* plValue3)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- pContext = GetContextSuspended();
- if(!pContext) return;
- 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
- {
- switch(eParam)
- {
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- ProcessContext(pContext);
- }
- AL_API void AL_APIENTRY alGetBufferiv(ALuint buffer, ALenum eParam, ALint* plValues)
- {
- ALCcontext *pContext;
- ALCdevice *device;
- ALbuffer *ALBuf;
- pContext = GetContextSuspended();
- if(!pContext) return;
- device = pContext->Device;
- if(!plValues)
- alSetError(pContext, AL_INVALID_VALUE);
- else if((ALBuf=LookupBuffer(device->BufferMap, buffer)) == NULL)
- alSetError(pContext, AL_INVALID_NAME);
- else
- {
- switch(eParam)
- {
- case AL_FREQUENCY:
- case AL_BITS:
- case AL_CHANNELS:
- case AL_SIZE:
- alGetBufferi(buffer, eParam, plValues);
- break;
- case AL_LOOP_POINTS:
- plValues[0] = ALBuf->LoopStart;
- plValues[1] = ALBuf->LoopEnd;
- break;
- default:
- alSetError(pContext, AL_INVALID_ENUM);
- break;
- }
- }
- 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);
- if ((size%(OrigBytes*OrigChannels)) != 0)
- 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;
- ALBuf->data = temp;
- // Samples are converted here
- ConvertData(ALBuf->data, data, OrigBytes, newsize);
- ALBuf->format = NewFormat;
- ALBuf->eOriginalFormat = OrigFormat;
- ALBuf->size = newsize*NewBytes;
- ALBuf->frequency = freq;
- ALBuf->LoopStart = 0;
- ALBuf->LoopEnd = newsize / NewChannels;
- ALBuf->OriginalSize = size;
- ALBuf->OriginalAlign = OrigBytes * OrigChannels;
- 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;
- case 2:
- for(i = 0;i < len;i++)
- {
- smp = ((ALshort*)src)[i];
- dst[i] = ((smp < 0) ? (smp/32768.0f) : (smp/32767.0f));
- }
- break;
- case 4:
- for(i = 0;i < len;i++)
- dst[i] = ((ALfloat*)src)[i];
- break;
- 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++)
- {
- Sample[c] = *(IMAData++);
- Sample[c] |= *(IMAData++) << 8;
- Sample[c] = (Sample[c]^0x8000) - 32768;
- 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;
- }
- }
- }
- }
- }
- static void ConvertDataMULaw(ALfloat *dst, const ALvoid *src, ALsizei len)
- {
- ALsizei i;
- ALint smp;
- if(src == NULL)
- return;
- 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;
- 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));
- }
- }
- /*
- * ReleaseALBuffers()
- *
- * INTERNAL FN : Called by DLLMain on exit to destroy any buffers that still exist
- */
- ALvoid ReleaseALBuffers(ALCdevice *device)
- {
- ALsizei i;
- for(i = 0;i < device->BufferMap.size;i++)
- {
- ALbuffer *temp = device->BufferMap.array[i].value;
- device->BufferMap.array[i].value = NULL;
- // Release sample data
- free(temp->data);
- // Release Buffer structure
- ALTHUNK_REMOVEENTRY(temp->buffer);
- memset(temp, 0, sizeof(ALbuffer));
- free(temp);
- }
- }
|