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 default-features = false somewhere in the dependency tree.

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 the Low resampling quality.

Enables fft_resampler of rubato