Signed-off-by: Mans Rullgard <mans@mansr.com>
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)
*/
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 */