Commit f32e646d authored by Justin Ruggles's avatar Justin Ruggles Committed by Michael Niedermayer

Fix use of sstep/dstep in ff_iir_filter().

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
(cherry picked from commit c3897d76)
parent 024f6370
......@@ -158,7 +158,7 @@ void ff_iir_filter(const struct FFIIRFilterCoeffs *c, struct FFIIRFilterState *s
*dst = av_clip_int16(lrintf(res));
s->x[c->order - 1] = in;
src += sstep;
dst += sstep;
dst += dstep;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment