Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Calculate the listener matrix when a new orientation is specified | Chris Robinson | 2011-10-30 | 3 | -1/+60 |
| | | | | | This is so the matrix isn't derived each time a source is updated, and it will make supporting user-defined matrices easier. | ||||
* | Add a work-around for cross-compiling with MinGW | Chris Robinson | 2011-10-27 | 1 | -0/+26 |
| | |||||
* | Set AL_STOPPED after setting AL_PLAYING when a source has nothing to play | Chris Robinson | 2011-10-15 | 1 | -8/+8 |
| | |||||
* | Return the key's value from the map when it's removed | Chris Robinson | 2011-10-06 | 1 | -7/+6 |
| | |||||
* | Check for the HRTF object instead of a flag | Chris Robinson | 2011-10-06 | 1 | -4/+2 |
| | |||||
* | Add min/max/clamp methods for 64-bit int | Chris Robinson | 2011-10-04 | 1 | -0/+7 |
| | |||||
* | Remove some unneeded templates and parameters | Chris Robinson | 2011-10-04 | 1 | -2/+2 |
| | |||||
* | Convert samples to float when copying to the stack | Chris Robinson | 2011-10-04 | 1 | -4/+4 |
| | |||||
* | Use sample frames when handling the buffer length | Chris Robinson | 2011-10-04 | 3 | -98/+73 |
| | |||||
* | Don't use inline asm with MSVC on 64-bit | Chris Robinson | 2011-10-02 | 1 | -1/+1 |
| | |||||
* | Get rid of some unnecessary casting | Chris Robinson | 2011-10-02 | 1 | -4/+4 |
| | |||||
* | Rename some parameters | Chris Robinson | 2011-10-02 | 2 | -21/+21 |
| | |||||
* | Remove the OriginalAlign buffer field, and calculate it as needed | Chris Robinson | 2011-10-01 | 2 | -8/+12 |
| | |||||
* | 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, ↵ | Chris Robinson | 2011-10-01 | 4 | -1/+47 |
| | | | | | | | | | | | samples, and seconds The provided buffer lengths correspond to the source offsets, in that the byte length specifies the end of the byte offset (ie, when the buffer is used for a static source, the offset will range between 0 (inclusive) and the byte length (exclusive)). Although an application could use the AL_SIZE, AL_CHANNELS, AL_BITS, and AL_FREQUENCY properties to find the length in samples and seconds, the byte length cannot be reliably calculated this way. | ||||
* | Use tokens matching the string | Chris Robinson | 2011-10-01 | 1 | -2/+2 |
| | |||||
* | Add support for AL_EXT_ALAW | Chris Robinson | 2011-10-01 | 4 | -3/+165 |
| | |||||
* | Rename LOWPASSFREQCUTOFF to LOWPASSFREQREF | Chris Robinson | 2011-09-30 | 1 | -1/+1 |
| | |||||
* | Define the values for F_PI and F_PI_2 directly instead of using M_PI | Chris Robinson | 2011-09-30 | 1 | -6/+2 |
| | |||||
* | Use raise(SIGTRAP) instead of kill(getpid(),SIGTRAP) | Chris Robinson | 2011-09-30 | 1 | -1/+1 |
| | |||||
* | Set the mixer FPU mode when setting a new effect on an effect slot | Chris Robinson | 2011-09-29 | 1 | -0/+5 |
| | |||||
* | Set the FPU into single-precision mode for mixer updates | Chris Robinson | 2011-09-29 | 2 | -8/+24 |
| | |||||
* | Use inline functions to set/restore the FPU mode for mixer updates | Chris Robinson | 2011-09-29 | 2 | -15/+27 |
| | |||||
* | Use inline assembly for fast float-to-int conversions | Chris Robinson | 2011-09-29 | 1 | -0/+24 |
| | |||||
* | Set toward-zero rounding when updating in alDeferUpdatesSOFT | Chris Robinson | 2011-09-28 | 1 | -0/+16 |
| | |||||
* | Clamp the low-pass reference gain to -60 dB instead of -40 dB | Chris Robinson | 2011-09-25 | 1 | -3/+3 |
| | |||||
* | Centralize the Lookup and Remove macros | Chris Robinson | 2011-09-24 | 6 | -104/+97 |
| | |||||
* | Look for and use atan2f, log10f, and floorf | Chris Robinson | 2011-09-24 | 1 | -0/+18 |
| | |||||
* | Use float types for the resamplers instead of double | Chris Robinson | 2011-09-23 | 1 | -7/+7 |
| | |||||
* | Check for asinf and use it | Chris Robinson | 2011-09-23 | 1 | -0/+6 |
| | |||||
* | Make AIRABSORBGAINHF a float type | Chris Robinson | 2011-09-23 | 1 | -1/+1 |
| | |||||
* | Move ConeScale and ZScale to ALu.c and alu.h, and make them floats | Chris Robinson | 2011-09-23 | 2 | -3/+3 |
| | |||||
* | Add atomic functions for GCC inline asm | Chris Robinson | 2011-09-23 | 1 | -0/+70 |
| | |||||
* | Use macros for float-typed PI values, to avoid manual casts everywhere | Chris Robinson | 2011-09-22 | 1 | -0/+3 |
| | |||||
* | Add a few more precision casts | Chris Robinson | 2011-09-22 | 1 | -1/+1 |
| | |||||
* | Use cosf and sinf when available | Chris Robinson | 2011-09-22 | 1 | -0/+12 |
| | | | | Also clear away a few more MSVC precision warnings | ||||
* | Silence some MSVC precision warnings | Chris Robinson | 2011-09-22 | 4 | -37/+26 |
| | |||||
* | Constify some parameters | Chris Robinson | 2011-09-22 | 3 | -9/+9 |
| | |||||
* | Define _WIN32_WINNT on the command line with _WIN32 | Chris Robinson | 2011-09-20 | 1 | -3/+0 |
| | |||||
* | Move Sleep implementation into helper.c and emulate sched_yield for Windows | Chris Robinson | 2011-09-20 | 1 | -10/+4 |
| | |||||
* | Make a separate log level to trace reference counts, to avoid log spam for ↵ | Chris Robinson | 2011-09-20 | 1 | -1/+7 |
| | | | | traces | ||||
* | Add a ConfigValueStr function, to return the string through a parameter | Chris Robinson | 2011-09-19 | 1 | -0/+1 |
| | |||||
* | Use the ALC types for the device format enum values | Chris Robinson | 2011-09-18 | 1 | -12/+12 |
| | |||||
* | Use arrays instead of large switches to decompose formats | Chris Robinson | 2011-09-18 | 2 | -222/+106 |
| | |||||
* | Return int and float config values through a parameter | Chris Robinson | 2011-09-18 | 2 | -3/+4 |
| | | | | | This allows the getter functions to return whether or not the option exists without a separate call and check. | ||||
* | Dynamically allocate space for HRTF tables | Chris Robinson | 2011-09-18 | 1 | -0/+1 |
| | |||||
* | Store the HRTF tables used in the device | Chris Robinson | 2011-09-18 | 1 | -3/+9 |
| | |||||
* | Make alcSetError static | Chris Robinson | 2011-09-14 | 1 | -2/+0 |
| | |||||
* | Use IsDebuggerPresent instead of the VC-only __try/__except | Chris Robinson | 2011-09-14 | 1 | -5/+2 |
| | |||||
* | Return an error from the CaptureSamples method instead of setting it | Chris Robinson | 2011-09-14 | 1 | -1/+1 |
| |