| Commit message (Expand) | Author | Age | Files | Lines |
* | Only require MSADPCM block alignment to be a multiple of 2 | Chris Robinson | 2014-03-06 | 1 | -2/+2 |
* | Move the sample conversion routines to a separate file | Chris Robinson | 2014-03-05 | 1 | -1261/+3 |
* | Implement a simplistic MSADPCM encoder | Chris Robinson | 2014-03-05 | 1 | -19/+47 |
* | Allocate enough temp space for the ADPCM decoders and encoders | Chris Robinson | 2014-03-05 | 1 | -4/+4 |
* | Use specialized methods for converting ALshort to IMA4 and MSADPCM | Chris Robinson | 2014-03-05 | 1 | -2/+32 |
* | Use specialized methods for converting IMA4 and MSADPCM to ALshort | Chris Robinson | 2014-03-05 | 1 | -8/+39 |
* | Use maxi to clamp an int to a lower-bound | Chris Robinson | 2014-03-05 | 1 | -1/+1 |
* | Expand the sign bit on the initial MSADPCM delta value | Chris Robinson | 2014-03-05 | 1 | -0/+1 |
* | Add an extension to support MSADPCM buffer formats | Chris Robinson | 2014-03-04 | 1 | -27/+309 |
* | Add an extension to alter the block alignment for buffer unpack/pack ops | Chris Robinson | 2014-03-04 | 1 | -16/+71 |
* | Parameterize the block alignment | Chris Robinson | 2014-03-04 | 1 | -111/+152 |
* | Use alloca for temp space decoding/encoding IMA4 blocks | Chris Robinson | 2014-03-03 | 1 | -4/+11 |
* | Reduce explicit template declarations and ignore IMA4-to-IMA4 conversions | Chris Robinson | 2014-03-03 | 1 | -159/+35 |
* | Store the original frame size alignment in the buffer | Chris Robinson | 2014-03-03 | 1 | -8/+22 |
* | Use C99 inline in more places | Chris Robinson | 2013-11-04 | 1 | -0/+2 |
* | Use C99 inline semantics | Chris Robinson | 2013-11-04 | 1 | -0/+3 |
* | Use an UNUSED macro instead of void-tagging unused parameters | Chris Robinson | 2013-10-07 | 1 | -16/+4 |
* | Remove al_try usage from alBuffer.c | Chris Robinson | 2013-10-07 | 1 | -246/+230 |
* | Start using a simpler method for error handling | Chris Robinson | 2013-10-06 | 1 | -335/+328 |
* | Use a separate value for the maximum buffer channels | Chris Robinson | 2013-07-23 | 1 | -4/+4 |
* | Silence some clang warnings | Chris Robinson | 2013-06-05 | 1 | -6/+7 |
* | Use C99's inline instead of __inline | Chris Robinson | 2013-05-28 | 1 | -110/+110 |
* | Fix possible overflow when converting float to int | Chris Robinson | 2013-05-20 | 1 | -2/+2 |
* | Simplify al_try code | Chris Robinson | 2013-03-24 | 1 | -5/+4 |
* | Use int instead of long for the IMA4 tables | Chris Robinson | 2012-11-10 | 1 | -3/+3 |
* | Load Int and UInt samples as float with alBufferData | Chris Robinson | 2012-11-10 | 1 | -2/+2 |
* | Don't include alu.h in alMain.h | Chris Robinson | 2012-09-14 | 1 | -2/+1 |
* | Minor typo fixes | Chris Robinson | 2012-06-28 | 1 | -2/+2 |
* | Don't use all caps for enum value names | Chris Robinson | 2012-06-28 | 1 | -6/+6 |
* | Switch alBuffer.c to the new error handling scheme, and get rid of more hunga... | Chris Robinson | 2012-04-24 | 1 | -415/+373 |
* | Remove some more hungarian notation | Chris Robinson | 2012-04-19 | 1 | -94/+94 |
* | Fix comment and rename the buffer's self-id | Chris Robinson | 2012-04-19 | 1 | -6/+6 |
* | Avoid shadowing a couple variables | Chris Robinson | 2012-04-16 | 1 | -4/+4 |
* | Add a COUNTOF macro to get the number of entries in a static array | Chris Robinson | 2012-02-19 | 1 | -2/+2 |
* | Move the endian test macro to alMain.h | Chris Robinson | 2012-02-15 | 1 | -5/+0 |
* | Ensure ALbyte3 and ALubyte3 are the proper size | Chris Robinson | 2012-02-07 | 1 | -0/+2 |
* | Pass the uncompressed sample count to LoadData and ConvertData for IMA4 | Chris Robinson | 2012-01-26 | 1 | -41/+56 |
* | Avoid a bit of code duplication | Chris Robinson | 2012-01-25 | 1 | -70/+29 |
* | Remove the unnecessary AL_MULAW_SOFT, AL_ALAW_SOFT, and AL_IMA4_SOFT defines | Chris Robinson | 2012-01-10 | 1 | -3/+0 |
* | Append _SOFT to the AL_SOFT_buffer_samples enums | Chris Robinson | 2012-01-10 | 1 | -49/+49 |
* | Use sample frames when handling the buffer length | Chris Robinson | 2011-10-04 | 1 | -32/+16 |
* | Get rid of some unnecessary casting | Chris Robinson | 2011-10-02 | 1 | -4/+4 |
* | Rename some parameters | Chris Robinson | 2011-10-02 | 1 | -18/+18 |
* | Remove the OriginalAlign buffer field, and calculate it as needed | Chris Robinson | 2011-10-01 | 1 | -6/+11 |
* | Fix potential divide-by-0 | Chris Robinson | 2011-10-01 | 1 | -5/+11 |
* | Add buffer properties to get the internal format, and the length in bytes, sa... | Chris Robinson | 2011-10-01 | 1 | -1/+36 |
* | Add support for AL_EXT_ALAW | Chris Robinson | 2011-10-01 | 1 | -2/+159 |
* | Centralize the Lookup and Remove macros | Chris Robinson | 2011-09-24 | 1 | -23/+20 |
* | Silence some MSVC precision warnings | Chris Robinson | 2011-09-22 | 1 | -10/+10 |
* | Use arrays instead of large switches to decompose formats | Chris Robinson | 2011-09-18 | 1 | -219/+106 |