[FFmpeg-cvslog] r18276 - trunk/libavcodec/interplayvideo.c

reimar subversion
Tue Mar 31 20:23:52 CEST 2009


Author: reimar
Date: Tue Mar 31 20:23:52 2009
New Revision: 18276

Log:
Fix a too small CHECK_STREAM_PTR value in interplayvideo.c

Modified:
   trunk/libavcodec/interplayvideo.c

Modified: trunk/libavcodec/interplayvideo.c
==============================================================================
--- trunk/libavcodec/interplayvideo.c	Tue Mar 31 20:18:14 2009	(r18275)
+++ trunk/libavcodec/interplayvideo.c	Tue Mar 31 20:23:52 2009	(r18276)
@@ -258,8 +258,7 @@ static int ipvideo_decode_block_opcode_0
 
     if (P[0] <= P[1]) {
 
-        /* need 12 more bytes */
-        CHECK_STREAM_PTR(12);
+        CHECK_STREAM_PTR(14);
         B[0] = *s->stream_ptr++;  B[1] = *s->stream_ptr++;
         P[2] = *s->stream_ptr++;  P[3] = *s->stream_ptr++;
         B[2] = *s->stream_ptr++;  B[3] = *s->stream_ptr++;



More information about the ffmpeg-cvslog mailing list