aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* Deinterlace audio when loading it into the stack.Chris Robinson2012-09-261-182/+168
| | | | | | | It may be better to deinterlace it on load into the buffer, though I don't imagine this will affect much. It could be nice for consistency's sake, though it would also complicate things if we ever want to support direct access to buffer data.
* Round when calculating NumUpdates from PulseAudio's minreqChris Robinson2012-09-251-7/+8
|
* Remove an unnecessary includeChris Robinson2012-09-241-1/+0
|
* Combine multiple loops into oneChris Robinson2012-09-242-63/+30
|
* Avoid mixing silence to outputChris Robinson2012-09-242-1/+15
| | | | "Silence" being less than -100dB.
* Remove SSE resamplers. They aren't gaining us much this way.Chris Robinson2012-09-243-104/+0
|
* Make sure PulseAudio sets an update size that's a multiple of 4 samples with SSEChris Robinson2012-09-201-2/+5
|
* Help ensure the update size is a multiple of 4 with SSEChris Robinson2012-09-201-0/+5
|
* Fix matrix multiply used by the SSE cubic resamplerChris Robinson2012-09-181-63/+22
| | | | Also remove the 4-sample loop. It's not terribly effective.
* Precision control bits don't exist with SSEChris Robinson2012-09-181-5/+4
|
* Improve a couple error traces with the HRTF loaderChris Robinson2012-09-181-2/+2
|
* Win64 doesn't allow _controlfp or __control87_2 to set the precision control ↵Chris Robinson2012-09-181-0/+6
| | | | bits
* Avoid correcting for more non-existing clicksChris Robinson2012-09-161-8/+14
|
* Don't try to correct for non-existing clicks.Chris Robinson2012-09-161-6/+13
|
* Explicitly give the wet buffer 1 channelChris Robinson2012-09-163-16/+16
|
* Check the proper value for setting WetPendingClicksChris Robinson2012-09-161-1/+1
|
* Avoid building redundant mixersChris Robinson2012-09-165-99/+75
|
* Implement an SSE MixSend methodChris Robinson2012-09-161-0/+29
|
* Properly restore the SSE control word with __control87_2Chris Robinson2012-09-161-1/+1
|
* Properly handle the SSE control wordChris Robinson2012-09-161-16/+37
|
* Use __control87_2 when availableChris Robinson2012-09-161-0/+7
|
* Use a struct to store the FPU modeChris Robinson2012-09-163-20/+17
|
* Implement an SSE cubic resamplerChris Robinson2012-09-143-1/+92
|
* Shorten a warningChris Robinson2012-09-141-1/+1
|
* Implement an SSE linear resamplerChris Robinson2012-09-143-0/+54
|
* Ensure the ResampledBuffer is alignedChris Robinson2012-09-141-1/+1
|
* Use a source param for the resampler and move them to the mixer sourceChris Robinson2012-09-144-64/+67
|
* Fix up some more header includesChris Robinson2012-09-141-3/+2
|
* Don't include alu.h in alMain.hChris Robinson2012-09-1415-24/+29
|
* Enable flush-to-zero mode when possibleChris Robinson2012-09-141-0/+40
|
* Move a couple methods to where they're usedChris Robinson2012-09-122-45/+45
|
* Restore support for the previous mhr formatChris Robinson2012-09-121-146/+330
|
* Update fnamelist after handling % markersChris Robinson2012-09-121-0/+1
|
* Use PATH_MAX for the fname lengthChris Robinson2012-09-121-1/+7
|
* Improve parsing hrtf_tables filenamesChris Robinson2012-09-121-32/+38
|
* Warn about SSE performance with non-multiple-of-4 update sizesChris Robinson2012-09-111-0/+6
|
* Use the correct size for defaultCoeffsChris Robinson2012-09-111-1/+1
|
* Minor cleanups for variable declarationsChris Robinson2012-09-112-31/+16
|
* Don't use count-specific functions to write to the output bufferChris Robinson2012-09-111-89/+13
|
* Use a non-interleaved DryBufferChris Robinson2012-09-117-76/+65
|
* Do the filtering separately from the mixingChris Robinson2012-09-114-59/+43
|
* Update HRTF codeChris Robinson2012-09-117-1071/+1283
| | | | | | | | | | | This update allows for much more flexibility in the HRTF data. It also allows for HRTF table file names to include "%r" to represent the device's playback rate (e.g. if you set hrtf-%r.mhr, then it will try to use hrtf-44100.mhr or hrtf-48000.mhr depending if the device's output rate is 44100 or 48000, respectively). The makehrtf utility has also been updated to support more options and input file formats, as well as the new mhr format.
* Again try to get _WIN32_IE to behave right with MinGWChris Robinson2012-09-111-1/+1
|
* Try to ensure mixing samples in multiples of 4Chris Robinson2012-09-091-0/+5
|
* Use the right method to clear a __m128 to 0Chris Robinson2012-09-091-2/+2
|
* Use SSE to do 4 samples at once (non-HRTF direct mix), instead of to apply a ↵Chris Robinson2012-09-091-22/+43
| | | | | | matrix row MaxCHannels no longer needs to be a multiple of 4 now, either.
* Implement MixDirect_SSE separately from the C and Neon versionsChris Robinson2012-09-094-23/+58
|
* Move the target effect slot to the SendParams structChris Robinson2012-09-084-12/+10
|
* Remove STACK_DATA_SIZE in favor of BUFFERSIZEChris Robinson2012-09-082-6/+4
|
* Remove some unused codeChris Robinson2012-09-081-4/+0
|