Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't split config sections into separate blocks | Chris Robinson | 2013-06-16 | 1 | -73/+42 |
| | |||||
* | Improve parsing of the config files | Chris Robinson | 2013-06-16 | 1 | -69/+59 |
| | | | | This will also now recognize (and strip) quotation marks from around values. | ||||
* | Add a loopback extension example | Chris Robinson | 2013-06-16 | 2 | -1/+250 |
| | |||||
* | Better handle spaces between string list entries | Chris Robinson | 2013-06-16 | 1 | -5/+11 |
| | |||||
* | Fix input and feedback in the echo effect | Chris Robinson | 2013-06-10 | 1 | -3/+3 |
| | |||||
* | Don't open the log file with both 'truncate' and 'append' flags | Chris Robinson | 2013-06-07 | 1 | -1/+1 |
| | |||||
* | Use explicit bit offsets when checking for SSE and SSE2 | Chris Robinson | 2013-06-06 | 1 | -4/+2 |
| | | | | Clang's cpuid.h doesn't contain the bit_* macros. | ||||
* | Use ALfilterState for the distortion effect filters | Chris Robinson | 2013-06-06 | 3 | -70/+41 |
| | |||||
* | Use a static lib for the common example code | Chris Robinson | 2013-06-05 | 1 | -12/+10 |
| | |||||
* | Use SDL_sound for the other examples | Chris Robinson | 2013-06-05 | 5 | -766/+28 |
| | |||||
* | Use SDL_sound for the alstream example | Chris Robinson | 2013-06-05 | 5 | -48/+239 |
| | |||||
* | Add a custom FindSDL_sound cmake module | Chris Robinson | 2013-06-05 | 1 | -0/+382 |
| | | | | | | The one that comes with CMake is broken, incorrectly setting SDL_SOUND_LIBRARIES, causing warnings, and not even working if the project is C only. | ||||
* | Silence some clang warnings | Chris Robinson | 2013-06-05 | 8 | -38/+22 |
| | |||||
* | Avoid a NULL dereference | Chris Robinson | 2013-06-04 | 1 | -1/+1 |
| | |||||
* | Allow enabling HRTF through a context creation attribute | Chris Robinson | 2013-05-31 | 3 | -2/+68 |
| | |||||
* | Start an extension that can query the status of HRTF rendering | Chris Robinson | 2013-05-31 | 2 | -3/+15 |
| | |||||
* | Add ALC_EXT_DEFAULT_FILTER_ORDER to alext.h | Chris Robinson | 2013-05-31 | 1 | -0/+5 |
| | |||||
* | Make some example function pointers static | Chris Robinson | 2013-05-30 | 3 | -41/+41 |
| | |||||
* | Avoid an unnecessary loop | Chris Robinson | 2013-05-29 | 1 | -36/+19 |
| | |||||
* | Check the right flag for tracing SSE2 support | Chris Robinson | 2013-05-29 | 1 | -1/+1 |
| | |||||
* | Fix up the naming convention of effect methods | Chris Robinson | 2013-05-29 | 16 | -192/+195 |
| | |||||
* | Use C99's inline instead of __inline | Chris Robinson | 2013-05-28 | 18 | -252/+264 |
| | |||||
* | Use the high-shelf filter in place of low-pass | Chris Robinson | 2013-05-28 | 5 | -19/+6 |
| | | | | | They effectively both work to lower (or raise) high frequencies. However, the high-shelf performs better when gain=1. | ||||
* | Simplify and fix some filter gain calculations | Chris Robinson | 2013-05-27 | 2 | -11/+17 |
| | |||||
* | Use ALfilterState for the modulator high pass filter | Chris Robinson | 2013-05-27 | 1 | -25/+12 |
| | |||||
* | Use ALfilterState for the master echo and reverb filters | Chris Robinson | 2013-05-27 | 4 | -40/+24 |
| | |||||
* | Remove an unused method | Chris Robinson | 2013-05-27 | 1 | -12/+0 |
| | |||||
* | Use ALfilterState for the source direct and send filters | Chris Robinson | 2013-05-27 | 5 | -31/+37 |
| | |||||
* | Fix filter coefficient pre-calc | Chris Robinson | 2013-05-27 | 1 | -4/+4 |
| | | | | | a[0] was getting set to 1 before a[1] and a[2] were normalized. a[0] needs to be done last. | ||||
* | Move ALEQFilter to alFilter.c/h and rename it to ALfilterState | Chris Robinson | 2013-05-27 | 3 | -107/+131 |
| | |||||
* | Store pointers to the getFactory funcs in the map | Chris Robinson | 2013-05-27 | 1 | -12/+15 |
| | |||||
* | Cleanup the ALeffectStateFactory_create methods | Chris Robinson | 2013-05-27 | 11 | -16/+23 |
| | | | | | Get rid of the ALeffectStateFactory_create macro, and use the VCALL_NOARGS helper (requires adding the 'this' factory parameter). | ||||
* | No-op if DELETE_OBJ is given a NULL pointer | Chris Robinson | 2013-05-27 | 1 | -4/+7 |
| | |||||
* | Use generic VCALL[_NOARGS] macros instead of type-specific wrappers | Chris Robinson | 2013-05-27 | 8 | -38/+31 |
| | |||||
* | Rename a variable | Chris Robinson | 2013-05-26 | 1 | -8/+8 |
| | |||||
* | Pre-apply the a[0] EQ filter coefficient | Chris Robinson | 2013-05-26 | 1 | -5/+11 |
| | | | | Saves 20 fp divisions per sample | ||||
* | Use SET_ERROR_AND_RETURN in a few more places | Chris Robinson | 2013-05-26 | 1 | -24/+20 |
| | |||||
* | Use the helper macros in more places | Chris Robinson | 2013-05-26 | 7 | -343/+237 |
| | |||||
* | Add helper macros to set an error and return, and use it in a few places | Chris Robinson | 2013-05-26 | 4 | -85/+57 |
| | |||||
* | Define the ALeffect typedef with the struct | Chris Robinson | 2013-05-25 | 1 | -13/+12 |
| | |||||
* | Use an ALeffectProps union to store the effect properties | Chris Robinson | 2013-05-25 | 13 | -361/+400 |
| | |||||
* | Use a Delete method for deletable objects | Chris Robinson | 2013-05-25 | 11 | -96/+28 |
| | |||||
* | Update the Null effect so it can act as a guide to new effects | Chris Robinson | 2013-05-25 | 2 | -22/+101 |
| | |||||
* | Use vtables for setting effect properties | Chris Robinson | 2013-05-24 | 11 | -306/+191 |
| | |||||
* | Set cmake policy CMP0005 and avoid unnecessary escape sequences | Chris Robinson | 2013-05-24 | 1 | -2/+3 |
| | |||||
* | Add quotes around an ADD_DEFINITIONS parameter | Chris Robinson | 2013-05-24 | 1 | -1/+1 |
| | |||||
* | Check for __restrict in a way to make MSVC happy, hopefully | Chris Robinson | 2013-05-24 | 1 | -1/+5 |
| | |||||
* | Move remaining effects to the effects subdir | Chris Robinson | 2013-05-23 | 8 | -10/+10 |
| | |||||
* | Move reverb to the effects subdir | Chris Robinson | 2013-05-23 | 2 | -1/+1 |
| | |||||
* | Move the AL_EFFECT_NULL state into a separate file | Chris Robinson | 2013-05-23 | 4 | -96/+107 |
| |