mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Fix use of sstep/dstep in ff_iir_filter().
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit c3897d7690fffe016de8ed56fdbdb9d685dbcce2)
This commit is contained in:
parent
024f63709d
commit
f32e646d82
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user