Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Constify the effect parameter of effect getters | Chris Robinson | 2013-10-07 | 11 | -56/+49 |
| | |||||
* | Use the UNUSED macro in the effects | Chris Robinson | 2013-10-07 | 11 | -110/+60 |
| | |||||
* | Use the UNUSED macro in the backends | Chris Robinson | 2013-10-07 | 5 | -59/+25 |
| | |||||
* | Use an UNUSED macro instead of void-tagging unused parameters | Chris Robinson | 2013-10-07 | 2 | -10/+6 |
| | |||||
* | Add a CMake option to not define the IDs used on Windows | Chris Robinson | 2013-10-07 | 1 | -0/+3 |
| | | | | | This includes the GUIDs, IIDs, CLSID, and PropertyKeys. It is up to the user to ensure the appropriate IDs are defined when linked. | ||||
* | Use a macro for the silence threshold | Chris Robinson | 2013-10-06 | 12 | -25/+26 |
| | |||||
* | Don't store the effect slot in SendParams | Chris Robinson | 2013-10-06 | 4 | -32/+50 |
| | | | | This makes it much more like DirectParams. | ||||
* | Rename Filter param member to LpFilter | Chris Robinson | 2013-10-06 | 2 | -6/+6 |
| | |||||
* | Use a simpler U64 macro to make 64-bit constants | Chris Robinson | 2013-10-06 | 1 | -1/+1 |
| | |||||
* | Finalize AL_SOFT_deferred_updates | Chris Robinson | 2013-10-05 | 1 | -1/+1 |
| | |||||
* | Only rest as long as needed in the Null renderer | Chris Robinson | 2013-10-05 | 1 | -5/+4 |
| | |||||
* | Add some more missing enums | Chris Robinson | 2013-10-03 | 1 | -0/+5 |
| | |||||
* | Implement the Compressor effect | Chris Robinson | 2013-10-03 | 2 | -18/+234 |
| | |||||
* | Add missing enum to the list | Chris Robinson | 2013-10-03 | 1 | -1/+1 |
| | |||||
* | Compile using -std=c99 when available | Chris Robinson | 2013-10-03 | 3 | -3/+3 |
| | |||||
* | Convert autowah.c line-endings | Chris Robinson | 2013-10-03 | 1 | -284/+284 |
| | |||||
* | Use helpers to set channel gain arrays | Chris Robinson | 2013-10-03 | 10 | -88/+22 |
| | | | | Also avoid unnecessary clearing. | ||||
* | Implement the Autowah effect. | Chris Robinson | 2013-10-03 | 1 | -0/+293 |
| | |||||
* | Avoid a divide-by-0 when distortion edge is 1 | Chris Robinson | 2013-09-04 | 1 | -0/+1 |
| | |||||
* | Use a separate value for the maximum buffer channels | Chris Robinson | 2013-07-23 | 3 | -6/+6 |
| | | | | | | | Unlike the device, input buffers are accessed based on channel numbers instead of enums. This means the maximum number of channels they hold depends on the number of channels any one format can have, rather than the total number of recognized channels. Currently, this is 8 for 7.1. | ||||
* | Implement master high-pass filter for EAXREVERB | Chris Robinson | 2013-07-21 | 1 | -9/+24 |
| | |||||
* | Remove an unused function | Chris Robinson | 2013-07-21 | 1 | -7/+0 |
| | |||||
* | Improve the source's low-pass filter response | Chris Robinson | 2013-07-20 | 1 | -4/+4 |
| | |||||
* | Limit the source step to 10 | Chris Robinson | 2013-07-02 | 1 | -14/+4 |
| | | | | | | | | | This means the combination of the buffer frequency, source pitch, and doppler shift can't exceed 10x the device playback frequency. This is needed to keep the mixer from starving with a really high increment, causing small DstBufferSize values that require a lot of iterations. | ||||
* | Fix a potential infinite loop. | Chris Robinson | 2013-06-19 | 1 | -8/+9 |
| | | | | | If the first XDG_CONFIG_DIRS entry isn't a proper relative path, it would never break the loop. | ||||
* | Work around some problems with KDevelop's parser | Chris Robinson | 2013-06-18 | 1 | -0/+7 |
| | |||||
* | Look for alsoft.conf in the XDG_CONFIG_DIRS and XDG_CONFIG_HOME directories | Chris Robinson | 2013-06-16 | 1 | -0/+55 |
| | | | | | | | This follows the XDG Base Directory Specification. The old files/locations are still supported, but configs found in XDG_CONFIG_DIRS take precedence over /etc/openal/alsoft.conf, and a config found in XDG_CONFIG_HOME takes precedence over $HOME/.alsoftrc. | ||||
* | Trace config file names being loaded | Chris Robinson | 2013-06-16 | 1 | -1/+9 |
| | |||||
* | 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. | ||||
* | 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 | 1 | -70/+14 |
| | |||||
* | Silence some clang warnings | Chris Robinson | 2013-06-05 | 4 | -7/+13 |
| | |||||
* | 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 | 2 | -1/+64 |
| | |||||
* | Start an extension that can query the status of HRTF rendering | Chris Robinson | 2013-05-31 | 1 | -3/+10 |
| | |||||
* | 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 | 11 | -156/+156 |
| | |||||
* | Use C99's inline instead of __inline | Chris Robinson | 2013-05-28 | 10 | -82/+82 |
| | |||||
* | Use the high-shelf filter in place of low-pass | Chris Robinson | 2013-05-28 | 3 | -6/+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 | 3 | -21/+24 |
| | |||||
* | Use ALfilterState for the source direct and send filters | Chris Robinson | 2013-05-27 | 2 | -27/+22 |
| | |||||
* | Move ALEQFilter to alFilter.c/h and rename it to ALfilterState | Chris Robinson | 2013-05-27 | 1 | -107/+10 |
| | |||||
* | Cleanup the ALeffectStateFactory_create methods | Chris Robinson | 2013-05-27 | 9 | -9/+18 |
| | | | | | Get rid of the ALeffectStateFactory_create macro, and use the VCALL_NOARGS helper (requires adding the 'this' factory parameter). |