[FFmpeg-cvslog] truespeech: fix invalid reads in truespeech_apply_twopoint_filter()

Justin Ruggles git at videolan.org
Fri Dec 23 03:37:58 CET 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Wed Dec 21 18:13:06 2011 -0500| [f264d336fe61c12ce9607c3060aa5d3dca947c61] | committer: Justin Ruggles

truespeech: fix invalid reads in truespeech_apply_twopoint_filter()

fixes Bug 171

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f264d336fe61c12ce9607c3060aa5d3dca947c61
---

 libavcodec/truespeech.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c
index 524884d..5ef0a01 100644
--- a/libavcodec/truespeech.c
+++ b/libavcodec/truespeech.c
@@ -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;



More information about the ffmpeg-cvslog mailing list