aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
Commit message (Collapse)AuthorAgeFilesLines
* Pre-apply the crossfeed filter gain to the input sample coefficientsChris Robinson2014-06-121-19/+10
|
* Use floats for the BS2B filterChris Robinson2014-06-111-10/+10
|
* Make bs2b_cross_feed inlineChris Robinson2014-06-101-2/+33
|
* Add SSE2 and SSE4.1 linear resamplersTimothy Arceri2014-06-061-1/+2
| | | | | Currently the only way SSE 4.1 is detected is by using __get_cpuid, i.e. with GCC. Windows' IsProcessorFeaturePresent does not report SSE4.1 capabilities.
* Avoid a loop when updating the source position variablesChris Robinson2014-06-021-0/+2
|
* Add an option to get the length of a source's full queueChris Robinson2014-05-251-0/+95
| | | | | This simplifies keeping track how much a source has buffered in its queue, which reduces a bunch of unnecessary book keeping the app would have to do.
* Move the active source's offset out of the direct paramsChris Robinson2014-05-242-2/+2
|
* Mark a few more functions as constChris Robinson2014-05-232-8/+8
|
* Rename CONST_FUNC and PRINTF_STYLE, and fix non-GNU AL_PRINTChris Robinson2014-05-231-10/+10
|
* AL_SOFT_block_alignment is now considered doneChris Robinson2014-05-221-6/+0
|
* Use the first non-0-length buffer when starting a sourceChris Robinson2014-05-221-1/+1
|
* Use an unsigned type for the win32 size_t formatterChris Robinson2014-05-221-1/+1
|
* Mark some functions as constChris Robinson2014-05-221-5/+7
|
* Add some asserts to verify block alignment for conversionChris Robinson2014-05-201-0/+8
|
* Return a sample pointer from resamplersChris Robinson2014-05-192-5/+6
| | | | Both resampling and filtering now avoid copying samples when they no-op.
* Put per-channel filter properties togetherChris Robinson2014-05-191-8/+12
|
* Move an HRTF mixer parameter and shorten a couple variable namesChris Robinson2014-05-181-3/+3
|
* Don't pass the SendParams to the wet-path mixerChris Robinson2014-05-181-11/+13
|
* Don't pass the DirectParams to the dry-path mixerChris Robinson2014-05-181-12/+13
|
* Use different parameters for HRTF mixersChris Robinson2014-05-182-1/+9
|
* Pass some DirectParams as function parametersChris Robinson2014-05-181-2/+3
|
* Add a ALfilterState method to process multiple samples at onceChris Robinson2014-05-182-0/+7
|
* Reset filter properties when setting a null filter typeChris Robinson2014-05-171-0/+6
|
* Support the band-pass filterChris Robinson2014-05-171-1/+84
|
* Apply high-pass source filters as neededChris Robinson2014-05-173-0/+20
|
* Implementing handling high-pass filter propertiesChris Robinson2014-05-172-1/+78
|
* Add a flag to specify when the low-pass filter needs to applyChris Robinson2014-05-171-13/+21
|
* Document the different filter types, and combine some split linesChris Robinson2014-05-172-36/+20
|
* Rename freq_scale parameter to freq_multChris Robinson2014-05-172-3/+3
|
* Initialize newformat to AL_NONE instead of a valid formatChris Robinson2014-05-151-6/+2
|
* Add a couple asserts to ensure a proper bufferChris Robinson2014-05-141-0/+3
| | | | | | It should not be possible for a playing or paused source to not have a valid buffer, but Clang's static analyzer doesn't know that. Hopefully an assert will convince it.
* Make RefCount a non-integer typeChris Robinson2014-05-148-32/+32
| | | | | It should only be accessed through the appropriate functions to ensure proper atomicity.
* Add HF Reference as a filter propertyChris Robinson2014-05-143-0/+6
|
* Make LOWPASSFREQREF a float valueChris Robinson2014-05-112-3/+3
|
* Store the filter reference frequency in the sourceChris Robinson2014-05-112-0/+4
|
* Avoid locking the mixer when unqueueing buffersChris Robinson2014-05-111-4/+16
|
* Avoid accessing the source's buffer queue head multiple timesChris Robinson2014-05-111-17/+16
|
* Use a struct to store the source's direct gain/gainhf propertiesChris Robinson2014-05-112-9/+10
|
* Avoid locking the mixer while queueing buffers onto a source.Chris Robinson2014-05-101-24/+34
|
* Mark the buffer queue pointers volatileChris Robinson2014-05-101-2/+2
|
* Add a missing pointer initChris Robinson2014-05-101-3/+3
|
* Explicit init the source queue and current_buffer pointersChris Robinson2014-05-101-0/+3
|
* Use a RWLock to help protect the source's buffer queueChris Robinson2014-05-103-35/+61
| | | | | In some instances this allows to to remove the device/mixer lock, or reduce how long it's held.
* Don't explicitly store the BuffersInQueueChris Robinson2014-05-102-10/+14
|
* Store the current buffer queue item, rather than played buffer countChris Robinson2014-05-102-78/+64
|
* Move the static_assert definition to its own headerChris Robinson2014-05-071-10/+1
|
* Move some headers to include/Chris Robinson2014-05-061-217/+0
| | | | Note, these are not installed. Only headers in include/AL/ are installed.
* Better pack HRTF mixing propertiesChris Robinson2014-05-032-14/+14
|
* Clamp the current and target gain lower bound to epsilonChris Robinson2014-05-031-1/+1
| | | | | Should give a bit more wiggle room for the gain stepping to get lower than the silence threshold.
* Convert the mmdevapi backend to the new backend APIChris Robinson2014-04-251-3/+0
|