libavcodec/iirfilter.h
2e0b635a
 /*
a169f498
  * IIR filter
2e0b635a
  * Copyright (c) 2008 Konstantin Shishkov
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
a169f498
  * IIR filter interface
2e0b635a
  */
 
98790382
 #ifndef AVCODEC_IIRFILTER_H
 #define AVCODEC_IIRFILTER_H
2e0b635a
 
 #include "avcodec.h"
 
a169f498
 struct FFIIRFilterCoeffs;
 struct FFIIRFilterState;
 
 enum IIRFilterType{
     FF_FILTER_TYPE_BESSEL,
aa226b24
     FF_FILTER_TYPE_BIQUAD,
a169f498
     FF_FILTER_TYPE_BUTTERWORTH,
     FF_FILTER_TYPE_CHEBYSHEV,
     FF_FILTER_TYPE_ELLIPTIC,
 };
 
 enum IIRFilterMode{
     FF_FILTER_MODE_LOWPASS,
     FF_FILTER_MODE_HIGHPASS,
     FF_FILTER_MODE_BANDPASS,
     FF_FILTER_MODE_BANDSTOP,
 };
2e0b635a
 
 /**
  * Initialize filter coefficients.
  *
20d1f6fe
  * @param avc          a pointer to an arbitrary struct of which the first
  *                     field is a pointer to an AVClass struct
a169f498
  * @param filt_type    filter type (e.g. Butterworth)
  * @param filt_mode    filter mode (e.g. lowpass)
2e0b635a
  * @param order        filter order
  * @param cutoff_ratio cutoff to input frequency ratio
a169f498
  * @param stopband     stopband to input frequency ratio (used by bandpass and bandstop filter modes)
  * @param ripple       ripple factor (used only in Chebyshev filters)
2e0b635a
  *
  * @return pointer to filter coefficients structure or NULL if filter cannot be created
  */
20d1f6fe
 struct FFIIRFilterCoeffs* ff_iir_filter_init_coeffs(void *avc,
                                                 enum IIRFilterType filt_type,
99c2111b
                                                 enum IIRFilterMode filt_mode,
                                                 int order, float cutoff_ratio,
                                                 float stopband, float ripple);
2e0b635a
 
 /**
  * Create new filter state.
  *
  * @param order filter order
  *
  * @return pointer to new filter state or NULL if state creation fails
  */
a169f498
 struct FFIIRFilterState* ff_iir_filter_init_state(int order);
2e0b635a
 
 /**
  * Free filter coefficients.
  *
a169f498
  * @param coeffs pointer allocated with ff_iir_filter_init_coeffs()
2e0b635a
  */
a169f498
 void ff_iir_filter_free_coeffs(struct FFIIRFilterCoeffs *coeffs);
2e0b635a
 
 /**
  * Free filter state.
  *
a169f498
  * @param state pointer allocated with ff_iir_filter_init_state()
2e0b635a
  */
a169f498
 void ff_iir_filter_free_state(struct FFIIRFilterState *state);
2e0b635a
 
 /**
b3b8b930
  * Perform IIR filtering on signed 16-bit input samples.
2e0b635a
  *
  * @param coeffs pointer to filter coefficients
  * @param state  pointer to filter state
  * @param size   input length
  * @param src    source samples
  * @param sstep  source stride
  * @param dst    filtered samples (destination may be the same as input)
  * @param dstep  destination stride
  */
a169f498
 void ff_iir_filter(const struct FFIIRFilterCoeffs *coeffs, struct FFIIRFilterState *state,
                    int size, const int16_t *src, int sstep, int16_t *dst, int dstep);
2e0b635a
 
b3b8b930
 /**
  * Perform IIR filtering on floating-point input samples.
  *
  * @param coeffs pointer to filter coefficients
  * @param state  pointer to filter state
  * @param size   input length
  * @param src    source samples
  * @param sstep  source stride
  * @param dst    filtered samples (destination may be the same as input)
  * @param dstep  destination stride
  */
 void ff_iir_filter_flt(const struct FFIIRFilterCoeffs *coeffs,
                        struct FFIIRFilterState *state, int size,
17d4f455
                        const float *src, int sstep, float *dst, int dstep);
b3b8b930
 
98790382
 #endif /* AVCODEC_IIRFILTER_H */