mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ff_celp_lp_synthesis_filterf: change loop end check
This makes no difference for supported input but avoids a out of array read with input that is never passed in currently Fixes CID717919 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3f350a482f
commit
3f01042142
@ -136,7 +136,7 @@ void ff_celp_lp_synthesis_filterf(float *out, const float *filter_coeffs,
|
|||||||
out2 -= val * old_out2;
|
out2 -= val * old_out2;
|
||||||
out3 -= val * old_out3;
|
out3 -= val * old_out3;
|
||||||
|
|
||||||
for (i = 5; i <= filter_length; i += 2) {
|
for (i = 5; i < filter_length; i += 2) {
|
||||||
old_out3 = out[-i];
|
old_out3 = out[-i];
|
||||||
val = filter_coeffs[i-1];
|
val = filter_coeffs[i-1];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user