Cargo Features
[dependencies]
fixed-resample = { version = "0.7.1", default-features = false, features = ["resampler", "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 - resampler fft-resampler
-
Enables resampling. Disable this if you only want to use the channel types without any resampling.
Enables rubato
Affects
channel::ResamplingChannelConfig.quality
,channel::ResamplingChannelConfig.subtract_resampler_delay
,channel::resampling_channel_custom
… - channel default
-
Enables the resampling channel types. This uses the
ringbuf
crate internally.Enables ringbuf
- fft-resampler default = resampler
-
Enables the fft-based resampling algorithm used for the
High
resampling quality. This is recommended for most use cases. Disable if you only need theLow
resampling quality.Enables fft_resampler of optional rubato