mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
iir: Change dst param to float* in ff_iir_filter_flt().
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 69915b48d6
)
This commit is contained in:
parent
cf9cb1f99a
commit
17d4f4558e
@ -269,7 +269,7 @@ void ff_iir_filter(const struct FFIIRFilterCoeffs *c,
|
||||
|
||||
void ff_iir_filter_flt(const struct FFIIRFilterCoeffs *c,
|
||||
struct FFIIRFilterState *s, int size,
|
||||
const float *src, int sstep, void *dst, int dstep)
|
||||
const float *src, int sstep, float *dst, int dstep)
|
||||
{
|
||||
if (c->order == 4) {
|
||||
FILTER_BW_O4(float, FLT)
|
||||
|
@ -117,6 +117,6 @@ void ff_iir_filter(const struct FFIIRFilterCoeffs *coeffs, struct FFIIRFilterSta
|
||||
*/
|
||||
void ff_iir_filter_flt(const struct FFIIRFilterCoeffs *coeffs,
|
||||
struct FFIIRFilterState *state, int size,
|
||||
const float *src, int sstep, void *dst, int dstep);
|
||||
const float *src, int sstep, float *dst, int dstep);
|
||||
|
||||
#endif /* AVCODEC_IIRFILTER_H */
|
||||
|
Loading…
Reference in New Issue
Block a user