[FFmpeg-cvslog] r11801 - trunk/libavcodec/h263_parser.c

aurel subversion
Sat Feb 2 00:48:39 CET 2008


Author: aurel
Date: Sat Feb  2 00:48:39 2008
New Revision: 11801

Log:
don't cast const away

Modified:
   trunk/libavcodec/h263_parser.c

Modified: trunk/libavcodec/h263_parser.c
==============================================================================
--- trunk/libavcodec/h263_parser.c	(original)
+++ trunk/libavcodec/h263_parser.c	Sat Feb  2 00:48:39 2008
@@ -77,7 +77,7 @@ static int h263_parse(AVCodecParserConte
         return buf_size;
     }
 
-    *poutbuf = (uint8_t *)buf;
+    *poutbuf = buf;
     *poutbuf_size = buf_size;
     return next;
 }




More information about the ffmpeg-cvslog mailing list