Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert the UHJ encoder to C++ | Chris Robinson | 2018-11-03 | 1 | -120/+0 |
| | |||||
* | Replace restrict with RESTRICT | Chris Robinson | 2018-10-29 | 1 | -2/+2 |
| | |||||
* | Use transposed direct form 2 for the UHJ all-pass filters | Chris Robinson | 2018-04-22 | 1 | -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 coefficients | Chris Robinson | 2018-04-22 | 1 | -53/+31 |
| | |||||
* | Store the filter history in local variables | Chris Robinson | 2018-03-14 | 1 | -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 it | Chris Robinson | 2018-01-07 | 1 | -1/+1 |
| | |||||
* | Use ALsizei in a few more places | Chris Robinson | 2017-01-16 | 1 | -5/+5 |
| | |||||
* | Improve the UHJ encoder's allpass processing loops | Chris Robinson | 2016-07-14 | 1 | -49/+70 |
| | |||||
* | Use the proper left and right channels for UHJ output | Chris Robinson | 2016-03-10 | 1 | -3/+3 |
| | |||||
* | Remove the extra scaling on W for UHJ encoding | Chris Robinson | 2016-03-01 | 1 | -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 encoding | Chris Robinson | 2016-02-27 | 1 | -9/+12 |
| | |||||
* | Add a function to encode 2-channel UHJ from B-Format | Chris Robinson | 2016-02-26 | 1 | -0/+91 |