aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/uhjfilter.c
Commit message (Collapse)AuthorAgeFilesLines
* Convert the UHJ encoder to C++Chris Robinson2018-11-031-120/+0
|
* Replace restrict with RESTRICTChris Robinson2018-10-291-2/+2
|
* Use transposed direct form 2 for the UHJ all-pass filtersChris Robinson2018-04-221-14/+14
| | | | | This has one extra multiply, but avoids two moves and uses almost half as much memory for the encoder state.
* Pre-calculate the squares of the UHJ filter coefficientsChris Robinson2018-04-221-53/+31
|
* Store the filter history in local variablesChris Robinson2018-03-141-8/+16
| | | | | Despite being marked as restrict (and const for src) to mark the pointers as being non-aliased, it seems the compiler optimizes better this way.
* Move the UNEXPECTED macro to the main header and rename itChris Robinson2018-01-071-1/+1
|
* Use ALsizei in a few more placesChris Robinson2017-01-161-5/+5
|
* Improve the UHJ encoder's allpass processing loopsChris Robinson2016-07-141-49/+70
|
* Use the proper left and right channels for UHJ outputChris Robinson2016-03-101-3/+3
|
* Remove the extra scaling on W for UHJ encodingChris Robinson2016-03-011-7/+26
| | | | | | There seems to be some inconsistent info about whether W should be scaled by sqrt(2) for encoding. Not applying the scaling results in a wider stereo image, which seems more appropriate.
* Separate the left and right output writes with UHJ encodingChris Robinson2016-02-271-9/+12
|
* Add a function to encode 2-channel UHJ from B-FormatChris Robinson2016-02-261-0/+91