diff options
author | Chris Robinson <[email protected]> | 2015-11-05 09:42:08 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-11-05 09:42:08 -0800 |
commit | b9e192b78a384ff13d87c606502373725042509c (patch) | |
tree | e5b99bba51f713e2f671b9ffbc37b22a1cdf5ba1 /alsoftrc.sample | |
parent | dce3d0c7bf8f68c0dc4d98870f9e8119742004c0 (diff) |
Implement a band-limited sinc resampler
This is essentially a 12-point sinc resampler, unless it's resampling to a rate
higher than the output, at which point it will vary between 12 and 24 points
and do anti-aliasing to avoid/reduce frequencies going over nyquist.
Code provided by Christopher Fitzgerald.
Diffstat (limited to 'alsoftrc.sample')
-rw-r--r-- | alsoftrc.sample | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alsoftrc.sample b/alsoftrc.sample index 70bfbcf2..3e7494dd 100644 --- a/alsoftrc.sample +++ b/alsoftrc.sample @@ -131,6 +131,8 @@ # linear - extrapolates samples using a linear slope between samples # sinc4 - extrapolates samples using a 4-point Sinc filter # sinc8 - extrapolates samples using an 8-point Sinc filter +# bsinc - extrapolates samples using a band-limited Sinc filter (varying +# between 12 and 24 points) # Specifying other values will result in using the default (linear). #resampler = linear |