aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use an UNUSED macro instead of void-tagging unused parametersChris Robinson2013-10-076-57/+49
|
* Remove a duplicate and unused macroChris Robinson2013-10-071-10/+0
|
* Remove al_try usage from alBuffer.cChris Robinson2013-10-071-246/+230
|
* Add a CMake option to not define the IDs used on WindowsChris Robinson2013-10-072-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 macroChris Robinson2013-10-071-0/+5
|
* Fix effect slot struct declarations so KDevelop doesn't barf on themChris Robinson2013-10-073-20/+17
|
* Start using a simpler method for error handlingChris Robinson2013-10-062-335/+343
| | | | This helps avoid the al_try/al_throwerr/al_endtry stuff.
* Use a macro for the silence thresholdChris Robinson2013-10-0613-25/+28
|
* Don't store the effect slot in SendParamsChris Robinson2013-10-065-33/+53
| | | | This makes it much more like DirectParams.
* Rename Filter param member to LpFilterChris Robinson2013-10-063-8/+8
|
* Use a simpler U64 macro to make 64-bit constantsChris Robinson2013-10-063-3/+13
|
* Add a workaround for KDevelop not recognizing 'restrict'Chris Robinson2013-10-061-0/+7
|
* Finalize AL_SOFT_deferred_updatesChris Robinson2013-10-053-12/+12
|
* Only rest as long as needed in the Null rendererChris Robinson2013-10-051-5/+4
|
* Add some more missing enumsChris Robinson2013-10-031-0/+5
|
* Implement the Compressor effectChris Robinson2013-10-039-49/+279
|
* Add missing enum to the listChris Robinson2013-10-031-1/+1
|
* Compile using -std=c99 when availableChris Robinson2013-10-034-4/+11
|
* Convert autowah.c line-endingsChris Robinson2013-10-031-284/+284
|
* Use helpers to set channel gain arraysChris Robinson2013-10-0311-89/+40
| | | | Also avoid unnecessary clearing.
* Implement the Autowah effect.Chris Robinson2013-10-0310-10/+333
|
* Avoid a divide-by-0 when distortion edge is 1Chris Robinson2013-09-041-0/+1
|
* Use a separate value for the maximum buffer channelsChris Robinson2013-07-237-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 EAXREVERBChris Robinson2013-07-211-9/+24
|
* Limit lower filter gain to -100dBChris Robinson2013-07-211-0/+3
|
* Remove an unused functionChris Robinson2013-07-211-7/+0
|
* Improve the source's low-pass filter responseChris Robinson2013-07-201-4/+4
|
* Some .ui changes that Qt Designer insists onChris Robinson2013-07-101-5/+15
|
* Use OpenAL_SOURCE_DIR for the CMake module path and declare the project earlierChris Robinson2013-07-101-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 10Chris Robinson2013-07-023-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 nameChris Robinson2013-07-022-4/+5
|
* Disable HRTF remove button when no files selectedChris Robinson2013-06-282-0/+9
|
* Update the period size/count sliders when loadingChris Robinson2013-06-271-0/+6
|
* Remove the unused menu bar and status bar from alsoft-configChris Robinson2013-06-272-11/+2
|
* Make sure SDL_sound was found before setting the includesChris Robinson2013-06-251-1/+1
|
* Better handle the INCLUDE_DIRECTORIES propertyChris Robinson2013-06-251-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 earlierChris Robinson2013-06-242-4/+7
|
* Properly check that Qt4 4.8+ was foundChris Robinson2013-06-241-1/+1
|
* Use the COMPILE_DEFINITIONS property instead of DEFINE_SYMBOLChris Robinson2013-06-241-1/+1
|
* Better specify include directories and defines needed for various targetsChris Robinson2013-06-241-10/+10
|
* Specify the required Qt4 version to find_packageChris Robinson2013-06-241-5/+3
|
* Make sure QtCore and QtGui were found and link with the appropriate libsChris Robinson2013-06-241-2/+2
|
* Require Qt 4.8 or newer for alsoft-configChris Robinson2013-06-241-1/+2
|
* Move alsoft-config to a separate project fileChris Robinson2013-06-242-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 applicationChris Robinson2013-06-235-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.hChris Robinson2013-06-202-4/+5
|
* Fix a potential infinite loop.Chris Robinson2013-06-191-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_soundChris Robinson2013-06-191-2/+17
|
* Work around some problems with KDevelop's parserChris Robinson2013-06-182-0/+13
|
* Look for alsoft.conf in the XDG_CONFIG_DIRS and XDG_CONFIG_HOME directoriesChris Robinson2013-06-161-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.