diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-06 13:41:50 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-08 22:59:14 +0200 |
commit | 41751e4aefc5d1b12d45a3cbcc33d3d9b704609a (patch) | |
tree | f3cde475bc5d708ec58cfb024d7675b0b0819ec7 /libavcodec/iirfilter.h | |
parent | 854f7bab5a766d3b4530bb5fdd2c6b7e4faf5e02 (diff) | |
download | ffmpeg-41751e4aefc5d1b12d45a3cbcc33d3d9b704609a.tar.gz |
avcodec/iirfilter: Make ff_iir_filter_flt() static
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/iirfilter.h')
-rw-r--r-- | libavcodec/iirfilter.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libavcodec/iirfilter.h b/libavcodec/iirfilter.h index 5ffa1ce53a..d6b8fe2782 100644 --- a/libavcodec/iirfilter.h +++ b/libavcodec/iirfilter.h @@ -128,20 +128,4 @@ void ff_iir_filter_free_statep(struct FFIIRFilterState **state); void ff_iir_filter(const struct FFIIRFilterCoeffs *coeffs, struct FFIIRFilterState *state, int size, const int16_t *src, ptrdiff_t sstep, int16_t *dst, ptrdiff_t dstep); -/** - * 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, - const float *src, ptrdiff_t sstep, - float *dst, ptrdiff_t dstep); - #endif /* AVCODEC_IIRFILTER_H */ |