BiquadDelay.nextBuffer

Process a single sample through the biquad filter. This is rather inefficient, in general you'll prefer to use the nextBuffer functions.

  1. void nextBuffer(const(float)* input, float* output, int frames, const(BiquadCoeff) coeff)
  2. void nextBuffer(const(double)* input, double* output, int frames, const(BiquadCoeff) coeff)
    struct BiquadDelay
    nothrow @nogc
    static if(order == 2)
    void
    nextBuffer
    (
    const(double)* input
    ,
    double* output
    ,
    int frames
    ,)
  3. void nextBuffer(float input, float* output, int frames, const(BiquadCoeff) coeff)
  4. void nextBuffer(double input, double* output, int frames, const(BiquadCoeff) coeff)

Meta