aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Separate the resampling and mixing stepsChris Robinson2012-09-087-406/+248
|
* Free the global ALSA config after opening capture devices tooChris Robinson2012-09-021-1/+4
|
* alsa: Free the global config cache to remove a lot of reported leaksLauri Kasanen2012-09-021-0/+6
| | | | Signed-off-by: Lauri Kasanen <[email protected]>
* Minor cleanups for mixer_incChris Robinson2012-08-294-35/+39
|
* Add an SSE-enhanced path for applying the mixer matrixChris Robinson2012-08-294-7/+48
|
* Make sure device buffers are 16-byte alignedChris Robinson2012-08-291-7/+7
|
* Print the error when reporting snd_pcm_delay failureChris Robinson2012-08-271-1/+1
|
* Use _aligned_free for pointers returned by _aligned_mallocChris Robinson2012-08-241-1/+3
|
* Add methods to get source properties as doublesChris Robinson2012-08-201-0/+3
|
* Properly export alGetSource3i64SOFTChris Robinson2012-08-201-0/+1
|
* Add a macro to help make a 64-bit valueChris Robinson2012-08-191-1/+1
|
* Use a default method to provide a dummy latencyChris Robinson2012-08-1913-98/+17
|
* Hold the device lock with PulseAudio between mixing and writingChris Robinson2012-08-181-0/+2
|
* Hold the device lock with ALSA between mixing and writingChris Robinson2012-08-181-0/+4
|
* Use non-blocking access for ALSA playbackChris Robinson2012-08-181-17/+37
|
* Move the device lock into the backend function tableChris Robinson2012-08-1816-11/+48
| | | | | For backend-specific implementations: this should hold the audio mixer loop for playback devices, and provide recursive mutex behavior.
* Keep the backend device open until the last reference is releasedChris Robinson2012-08-181-4/+5
| | | | | | This should generally happen with the next ALCdevice_DecRef call unless the device is in the middle of being used in another thread, in which case it's probably best to not remove the resources.
* Add the start of AL_SOFT_source_latencyChris Robinson2012-08-181-0/+3
| | | | | This extension will provide a way for apps to get accurate latency and playback position information
* Add a device method to retrieve the active latencyChris Robinson2012-08-1715-15/+155
| | | | | This is effectively the time until the next update will be heard by the user, or the closest approximation thereof, in nanoseconds.
* Place the alignment attribute before the variable declarationChris Robinson2012-08-161-1/+1
|
* Fix aligned allocator fallbackChris Robinson2012-08-161-3/+2
|
* Avoid dynamic handling of libsndioChris Robinson2012-08-161-81/+0
| | | | This makes it safer and easier to handle as OpenBSD updates it
* Apply HRTF mixer coefficients with stepping using SSEChris Robinson2012-08-154-11/+65
|