aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Combine variable terms separate from the scaling weightsChris Robinson2020-12-261-7/+7
|
* Add a crossover frequency field for the deviceChris Robinson2020-12-268-8/+13
| | | | | | Used when upsampling low-order ambisonic signals to higher order. Rather than a hardcoded 400hz, it ensures a consistent crossover point when an ambdec configuration is used. It can also allow for an alsoft config option.
* Use more constexpr variables instead of macrosChris Robinson2020-12-2512-126/+127
|
* Increase direct HRTF delay to 256Chris Robinson2020-12-251-1/+1
| | | | This should improve the error from the all-pass on the partial input.
* Return an optional for an errorChris Robinson2020-12-253-195/+87
|
* Avoid dynamic vectors in AmbDecConfChris Robinson2020-12-254-36/+93
| | | | Also add a bit more sanity checking
* Update a comment and type used in the convolution effectChris Robinson2020-12-251-11/+11
|
* Rename From2D to FromACN2DChris Robinson2020-12-256-8/+8
|
* Move the ambdec loader to coreChris Robinson2020-12-255-7/+7
|
* Use an import target for linking OpenSLChris Robinson2020-12-242-14/+12
|
* Remove unnecessary includesChris Robinson2020-12-244-8/+0
|
* Avoid AL types and enums in the effect processorsChris Robinson2020-12-2417-203/+391
|
* Move alexcpt to coreChris Robinson2020-12-2432-35/+19
|
* Avoid some more AL typesChris Robinson2020-12-242-43/+43
|
* fast_roundf implementations in asm for ARM64. (#511)David CARLIER2020-12-241-0/+6
|
* Avoid AL/ALC types in the backendsChris Robinson2020-12-1718-276/+277
|
* Don't use ALC error enums for the backend error codeChris Robinson2020-12-1719-176/+229
|
* Move the AL error enum out of base_exceptionChris Robinson2020-12-175-8/+14
|
* Don't return an enum from captureSamplesChris Robinson2020-12-1713-112/+85
| | | | It's always no_error
* Move logging to coreChris Robinson2020-12-1733-112/+130
|
* Don't link DistanceModel enums to AL valuesChris Robinson2020-12-163-28/+80
|
* Move AsyncEvent to a separate headerChris Robinson2020-12-167-47/+54
|
* Add missing includeChris Robinson2020-12-161-1/+1
|
* Update changelogChris Robinson2020-12-161-0/+2
|
* Send stop events when stopping paused voicesChris Robinson2020-12-161-5/+8
|
* Use a separate enum for the VoiceChange stateChris Robinson2020-12-166-31/+59
|
* Move VoiceChange to a separate headerChris Robinson2020-12-166-13/+30
|
* Avoid using a hidden unnamed template parameterChris Robinson2020-12-151-2/+4
|
* Fix some includesChris Robinson2020-12-151-2/+5
|
* Avoid a generic event structChris Robinson2020-12-153-14/+12
|
* Avoid some AL typesChris Robinson2020-12-152-70/+70
|
* Use a separate structure for the context/listener paramsChris Robinson2020-12-157-126/+109
|
* Avoid changing the global CPU flags in FillCPUCapsChris Robinson2020-12-153-95/+132
|
* Remove unneeded includesChris Robinson2020-12-151-2/+1
|
* Move fmt_traits to coreChris Robinson2020-12-135-9/+9
|
* Avoid compiling different sources for different targetsChris Robinson2020-12-135-32/+23
| | | | | | | | Simplifies configuration and fixes a potential problem with inline functions. Inline functions that fail to inline will have a callable body generated. If such a body is generated with the SSE4 source, for example, it can generate SSE4 instructions. Calls for that function in other sources can then end up calling the SSE4-generated body outside of any CPU capability check.
* Be more consistent with size_tChris Robinson2020-12-124-10/+10
|
* Make sure to stop ALSA playback when the backend stopsChris Robinson2020-12-121-0/+3
|
* Move the mixer functions to coreChris Robinson2020-12-1217-31/+30
|
* Use a separate list for core objectsChris Robinson2020-12-121-31/+34
|
* Remove an unnecessary include and forward declarationChris Robinson2020-12-122-2/+0
|
* Move some HRTF definitions to a separate headerChris Robinson2020-12-1211-50/+71
|
* Avoid passing DirectHrtfState to MixDirectHrtfChris Robinson2020-12-127-34/+39
|
* Move ambidefs.h to coreChris Robinson2020-12-1214-26/+31
|
* Don't modify the IR size of loaded HRTFsChris Robinson2020-12-115-20/+25
|
* Use constexpr variables instead of macrosChris Robinson2020-12-061-9/+9
|
* Use a smaller FFT for convolutionChris Robinson2020-12-051-3/+3
|
* Avoid returning an array for initializationChris Robinson2020-12-051-37/+38
|
* Reorder definitions to keep them near each otherChris Robinson2020-12-051-13/+13
|
* Remove some unnecessary inlines and includesChris Robinson2020-12-051-8/+6
|