Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use an UNUSED macro instead of void-tagging unused parameters | Chris Robinson | 2013-10-07 | 6 | -57/+49 |
| | |||||
* | Remove a duplicate and unused macro | Chris Robinson | 2013-10-07 | 1 | -10/+0 |
| | |||||
* | Remove al_try usage from alBuffer.c | Chris Robinson | 2013-10-07 | 1 | -246/+230 |
| | |||||
* | Add a CMake option to not define the IDs used on Windows | Chris Robinson | 2013-10-07 | 2 | -0/+16 |
| | | | | | This includes the GUIDs, IIDs, CLSID, and PropertyKeys. It is up to the user to ensure the appropriate IDs are defined when linked. | ||||
* | Add a workaround for KDevelop not recognizing the ALIGN macro | Chris Robinson | 2013-10-07 | 1 | -0/+5 |
| | |||||
* | Fix effect slot struct declarations so KDevelop doesn't barf on them | Chris Robinson | 2013-10-07 | 3 | -20/+17 |
| | |||||
* | Start using a simpler method for error handling | Chris Robinson | 2013-10-06 | 2 | -335/+343 |
| | | | | This helps avoid the al_try/al_throwerr/al_endtry stuff. | ||||
* | Use a macro for the silence threshold | Chris Robinson | 2013-10-06 | 13 | -25/+28 |
| | |||||
* | Don't store the effect slot in SendParams | Chris Robinson | 2013-10-06 | 5 | -33/+53 |
| | | | | This makes it much more like DirectParams. | ||||
* | Rename Filter param member to LpFilter | Chris Robinson | 2013-10-06 | 3 | -8/+8 |
| | |||||
* | Use a simpler U64 macro to make 64-bit constants | Chris Robinson | 2013-10-06 | 3 | -3/+13 |
| | |||||
* | Add a workaround for KDevelop not recognizing 'restrict' | Chris Robinson | 2013-10-06 | 1 | -0/+7 |
| | |||||
* | Finalize AL_SOFT_deferred_updates | Chris Robinson | 2013-10-05 | 3 | -12/+12 |
| | |||||
* | 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 | 9 | -49/+279 |
| | |||||
* | 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 | 4 | -4/+11 |
| | |||||
* | 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 | 11 | -89/+40 |
| | | | | Also avoid unnecessary clearing. | ||||
* | Implement the Autowah effect. | Chris Robinson | 2013-10-03 | 10 | -10/+333 |
| | |||||
* | 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 | 7 | -18/+20 |
| | | | | | | | 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 |
| | |||||
* | Limit lower filter gain to -100dB | Chris Robinson | 2013-07-21 | 1 | -0/+3 |
| | |||||
* | 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 |
| | |||||
* | Some .ui changes that Qt Designer insists on | Chris Robinson | 2013-07-10 | 1 | -5/+15 |
| | |||||
* | Use OpenAL_SOURCE_DIR for the CMake module path and declare the project earlier | Chris Robinson | 2013-07-10 | 1 | -5/+4 |
| | | | | | The minimum CMake version required is also bumped to 2.6. Patch by Andrew West, allows OpenAL Soft to be properly built as a sub-project. | ||||
* | Limit the source step to 10 | Chris Robinson | 2013-07-02 | 3 | -23/+6 |
| | | | | | | | | | 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. | ||||
* | Don't have ../../ as part of the target name | Chris Robinson | 2013-07-02 | 2 | -4/+5 |
| | |||||
* | Disable HRTF remove button when no files selected | Chris Robinson | 2013-06-28 | 2 | -0/+9 |
| | |||||
* | Update the period size/count sliders when loading | Chris Robinson | 2013-06-27 | 1 | -0/+6 |
| | |||||
* | Remove the unused menu bar and status bar from alsoft-config | Chris Robinson | 2013-06-27 | 2 | -11/+2 |
| | |||||
* | Make sure SDL_sound was found before setting the includes | Chris Robinson | 2013-06-25 | 1 | -1/+1 |
| | |||||
* | Better handle the INCLUDE_DIRECTORIES property | Chris Robinson | 2013-06-25 | 1 | -1/+7 |
| | | | | | | Older cmake verions (prior to 2.8.8) don't have a per-target INCLUDE_DIRECTORIES property, so the directories have to be added using the INCLUDE_DIRECTORIES command. | ||||
* | Check for Qt4 earlier | Chris Robinson | 2013-06-24 | 2 | -4/+7 |
| | |||||
* | Properly check that Qt4 4.8+ was found | Chris Robinson | 2013-06-24 | 1 | -1/+1 |
| | |||||
* | Use the COMPILE_DEFINITIONS property instead of DEFINE_SYMBOL | Chris Robinson | 2013-06-24 | 1 | -1/+1 |
| | |||||
* | Better specify include directories and defines needed for various targets | Chris Robinson | 2013-06-24 | 1 | -10/+10 |
| | |||||
* | Specify the required Qt4 version to find_package | Chris Robinson | 2013-06-24 | 1 | -5/+3 |
| | |||||
* | Make sure QtCore and QtGui were found and link with the appropriate libs | Chris Robinson | 2013-06-24 | 1 | -2/+2 |
| | |||||
* | Require Qt 4.8 or newer for alsoft-config | Chris Robinson | 2013-06-24 | 1 | -1/+2 |
| | |||||
* | Move alsoft-config to a separate project file | Chris Robinson | 2013-06-24 | 2 | -26/+31 |
| | | | | | This to help avoid FindQt4.cmake from polluting the current project with defines and include directories, applying them to targets that don't use Qt. | ||||
* | Add a configuration UI application | Chris Robinson | 2013-06-23 | 5 | -1/+2063 |
| | | | | | | | | | | | Not complete, but it's a decent start. Some problems: * Only some otions are handled (backend-specific options in particular aren't handled). * Does not warn when quitting with unsaved changes. * Some options are missing tooltips. | ||||
* | Check for MinGW in CMakeLists.txt instead of config.h | Chris Robinson | 2013-06-20 | 2 | -4/+5 |
| | |||||
* | 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. | ||||
* | Handle non-native endian formats with SDL_sound | Chris Robinson | 2013-06-19 | 1 | -2/+17 |
| | |||||
* | Work around some problems with KDevelop's parser | Chris Robinson | 2013-06-18 | 2 | -0/+13 |
| | |||||
* | 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. |