//! Fixed filter coefficients: input conditioning, weighting, output.
/// Feed-forward taps of the shaping high-pass.
pub static HIGHPASS_FF: = ;
/// Feedback taps of the same.
pub static HIGHPASS_FB: = ;
/// Coefficients of the output filter's feed-forward part.
pub static OUT_FIR: = ;
/// Coefficients of its feedback part.
pub static OUT_IIR: = ;
/// Symmetric six-tap smoothing filter.
pub static SMOOTH_FIR: = ;
/// Feedback part of the tilt filter.
pub static SMOOTH_IIR: = ;
/// Coefficients of the input high-pass: two recursive then three direct taps.
pub static INPUT_HIGHPASS: = ;