diff options
author | Chris Robinson <[email protected]> | 2019-09-29 22:43:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-29 22:43:46 -0700 |
commit | fb56b020412eb090d9ce4e2ffcc691766e5214b2 (patch) | |
tree | 38a6aa63ab11059ac2fadf6a463f6c0c9b2510f8 /alc | |
parent | 94ff2daafc071168a69d7af3694f0ab3126dddc0 (diff) |
Modify the bsinc resampler
Readjusted the bsinc12 cutoff back to -60dB. Also increased the filter's phase
count.
Diffstat (limited to 'alc')
-rw-r--r-- | alc/alu.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ extern Resampler ResamplerDefault; */ #define BSINC_SCALE_BITS 4 #define BSINC_SCALE_COUNT (1<<BSINC_SCALE_BITS) -#define BSINC_PHASE_BITS 4 +#define BSINC_PHASE_BITS 5 #define BSINC_PHASE_COUNT (1<<BSINC_PHASE_BITS) /* Interpolator state. Kind of a misnomer since the interpolator itself is |