mirror of https://git.ffmpeg.org/ffmpeg.git
truespeech: fix invalid reads in truespeech_apply_twopoint_filter()
fixes Bug 171
This commit is contained in:
parent
e9dc920127
commit
f264d336fe
|
@ -179,6 +179,7 @@ static void truespeech_apply_twopoint_filter(TSContext *dec, int quart)
|
|||
for(i = 0; i < 146; i++)
|
||||
tmp[i] = dec->filtbuf[i];
|
||||
off = (t / 25) + dec->offset1[quart >> 1] + 18;
|
||||
off = av_clip(off, 0, 145);
|
||||
ptr0 = tmp + 145 - off;
|
||||
ptr1 = tmp + 146;
|
||||
filter = (const int16_t*)ts_order2_coeffs + (t % 25) * 2;
|
||||
|
|
Loading…
Reference in New Issue