mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Fix use of sstep/dstep in ff_iir_filter().
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
a4f5af13fb
commit
c3897d7690
@ -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…
Reference in New Issue
Block a user