aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Trace config file names being loadedChris Robinson2013-06-161-1/+9
|
* Don't split config sections into separate blocksChris Robinson2013-06-161-73/+42
|
* Improve parsing of the config filesChris Robinson2013-06-161-69/+59
| | | | This will also now recognize (and strip) quotation marks from around values.
* Add a loopback extension exampleChris Robinson2013-06-162-1/+250
|
* Better handle spaces between string list entriesChris Robinson2013-06-161-5/+11
|
* Fix input and feedback in the echo effectChris Robinson2013-06-101-3/+3
|
* Don't open the log file with both 'truncate' and 'append' flagsChris Robinson2013-06-071-1/+1
|
* Use explicit bit offsets when checking for SSE and SSE2Chris Robinson2013-06-061-4/+2
| | | | Clang's cpuid.h doesn't contain the bit_* macros.
* Use ALfilterState for the distortion effect filtersChris Robinson2013-06-063-70/+41
|
* Use a static lib for the common example codeChris Robinson2013-06-051-12/+10
|
* Use SDL_sound for the other examplesChris Robinson2013-06-055-766/+28
|
* Use SDL_sound for the alstream exampleChris Robinson2013-06-055-48/+239
|
* Add a custom FindSDL_sound cmake moduleChris Robinson2013-06-051-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 warningsChris Robinson2013-06-058-38/+22
|
* Avoid a NULL dereferenceChris Robinson2013-06-041-1/+1
|
* Allow enabling HRTF through a context creation attributeChris Robinson2013-05-313-2/+68
|
* Start an extension that can query the status of HRTF renderingChris Robinson2013-05-312-3/+15
|
* Add ALC_EXT_DEFAULT_FILTER_ORDER to alext.hChris Robinson2013-05-311-0/+5
|
* Make some example function pointers staticChris Robinson2013-05-303-41/+41
|
* Avoid an unnecessary loopChris Robinson2013-05-291-36/+19
|
* Check the right flag for tracing SSE2 supportChris Robinson2013-05-291-1/+1
|
* Fix up the naming convention of effect methodsChris Robinson2013-05-2916-192/+195
|