Cargo Features
[dependencies]
fixed-resample = { version = "0.1.5", default-features = false, features = ["channel", "fft-resampler"] }
- default = channel, fft-resampler
-
These default features are set whenever
fixed-resample
is added without
somewhere in the dependency tree.default-features = false - channel default
-
Enables the resampling channel types. This uses the
ringbuf
crate internally.Enables ringbuf
- fft-resampler default
-
Enables the fft-based resampling algorithm used for the
Normal
resampling quality. This is recommended for most use cases. Disable if you only need theLow
resampling quality.Enables fft_resampler of rubato