Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix implicit widening after multiplication | Chris Robinson | 2023-12-23 | 1 | -3/+3 |
| | |||||
* | Use a variant instead of a union for InterpState | Chris Robinson | 2023-12-21 | 1 | -10/+12 |
| | |||||
* | Fix a pointer cast | Chris Robinson | 2023-12-10 | 1 | -2/+2 |
| | |||||
* | Much more clang-tidy cleanup | Chris Robinson | 2023-12-10 | 1 | -4/+3 |
| | |||||
* | More clang-tidy fixes | Chris Robinson | 2023-12-09 | 1 | -2/+2 |
| | |||||
* | Clean up some more clang-tidy warnings | Chris Robinson | 2023-12-08 | 1 | -1/+1 |
| | |||||
* | Avoid casting an integer literal | Chris Robinson | 2023-09-22 | 1 | -2/+2 |
| | |||||
* | Always write samples to the destination when resampling | Chris Robinson | 2023-02-11 | 1 | -12/+8 |
| | |||||
* | Assume 'frac' is less than 1 | Chris Robinson | 2023-02-10 | 1 | -0/+6 |
| | |||||
* | Rename some variables for consistency | Chris Robinson | 2023-02-09 | 1 | -7/+7 |
| | |||||
* | Use an interpolated FIR filter for cubic resampling | Chris Robinson | 2023-02-06 | 1 | -7/+45 |
| | | | | | | Similar to how the bsinc filters work, but optimized for 4-point filtering. At least the SSE version is notably faster than calculating the coefficients in real time. | ||||
* | Ensure the mixer helpers are properly inlined | Chris Robinson | 2023-01-13 | 1 | -3/+3 |
| | |||||
* | Combine some duplicate code to mix each channel | Chris Robinson | 2023-01-05 | 1 | -138/+76 |
| | |||||
* | Add and use mixers that process one input and output channel | Chris Robinson | 2023-01-05 | 1 | -0/+77 |
| | |||||
* | Rename lerp to avoid conflicts with C++20's std::lerp | Chris Robinson | 2022-04-06 | 1 | -1/+1 |
| | |||||
* | Remove an unnecessary subtraction | Chris Robinson | 2022-04-01 | 1 | -1/+1 |
| | |||||
* | Adjust the bsinc filter table packing | Chris Robinson | 2021-02-23 | 1 | -3/+3 |
| | | | | | | | | Now each scale's filter and phase delta are interleaved for each phase index, followed by the scale and scale+phase delta for each phase index. This ensures no holes in the filter coefficients for the fast bsinc resampler for a given run, while keeping the scale deltas in the same vicinity for the non-fast bsinc resampler. | ||||
* | Add some optimization hints | Chris Robinson | 2021-02-16 | 1 | -6/+8 |
| | |||||
* | Use spans instead of references to arrays | Chris Robinson | 2021-02-06 | 1 | -2/+2 |
| | |||||
* | Return non-const from the resampler function | Chris Robinson | 2021-01-02 | 1 | -10/+8 |
| | |||||
* | Use more constexpr variables instead of macros | Chris Robinson | 2020-12-25 | 1 | -1/+1 |
| | |||||
* | Avoid compiling different sources for different targets | Chris Robinson | 2020-12-13 | 1 | -0/+4 |
| | | | | | | | | 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_t | Chris Robinson | 2020-12-12 | 1 | -2/+2 |
| | |||||
* | Move the mixer functions to core | Chris Robinson | 2020-12-12 | 1 | -0/+303 |