Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid bitshifts for loop counting | Chris Robinson | 2020-11-08 | 1 | -11/+21 |
| | |||||
* | Fix an invalid unicode character in a comment | Chris Robinson | 2020-09-14 | 1 | -1/+1 |
| | |||||
* | Use inline wrappers to clarify forward/inverse FFTs | Chris Robinson | 2020-09-13 | 1 | -2/+2 |
| | |||||
* | Partly simplify FFT bit-reversal | Chris Robinson | 2020-09-13 | 1 | -8/+4 |
| | | | | | | | | | | | This can almost certainly be improved further, as less than half of the indices really need their reversed bit-pattern calculated and elements swapped (any symetrical bit pattern would just swap with itself, and indices whose reversed bit-pattern has already been traversed is already swapped). It may also prove beneficial to provide the base-2 log of the fft buffer size (number of bits to represent the indices), as that could help make the reversal more efficient with a known bit/loop count. | ||||
* | Revert "Fix the FFT half point for the shifter effects" | Chris Robinson | 2020-05-09 | 1 | -1/+1 |
| | | | | This reverts commit 12bb5a47cda0ef6ec1ced73ccf5d267a71f9e710. | ||||
* | Fix the FFT half point for the shifter effects | Chris Robinson | 2020-05-08 | 1 | -1/+1 |
| | |||||
* | Fix a few more GCC warnings | Chris Robinson | 2019-09-14 | 1 | -1/+1 |
| | |||||
* | removed unnecessary loop | Lopuska | 2019-09-15 | 1 | -2/+0 |
| | | | the caller in fshifter is already doing the same job by putting 0 for the imaginary part | ||||
* | Cleanup common sources' includes | Chris Robinson | 2019-07-29 | 1 | -6/+5 |
| | |||||
* | Use a span for the complex_fft/hilbert functions | Chris Robinson | 2019-06-08 | 1 | -29/+29 |
| | |||||
* | Avoid using old style casts | Filip Gawin | 2019-01-08 | 1 | -1/+1 |
| | | | | | | To think about: examples/alffplay.cpp:600 OpenAL32/Include/alMain.h:295 | ||||
* | Use standard complex types instead of custom | Chris Robinson | 2018-11-17 | 1 | -0/+76 |