[FFmpeg-cvslog] r17134 - trunk/libavcodec/cavsdec.c

stefang subversion
Tue Feb 10 17:36:01 CET 2009


Author: stefang
Date: Tue Feb 10 17:36:01 2009
New Revision: 17134

Log:
time_code has 24 bits, not 16

Modified:
   trunk/libavcodec/cavsdec.c

Modified: trunk/libavcodec/cavsdec.c
==============================================================================
--- trunk/libavcodec/cavsdec.c	Tue Feb 10 17:34:45 2009	(r17133)
+++ trunk/libavcodec/cavsdec.c	Tue Feb 10 17:36:01 2009	(r17134)
@@ -469,7 +469,7 @@ static int decode_pic(AVSContext *h) {
     } else {
         h->pic_type = FF_I_TYPE;
         if(get_bits1(&s->gb))
-            skip_bits(&s->gb,16);//time_code
+            skip_bits(&s->gb,24);//time_code
     }
     /* release last B frame */
     if(h->picture.data[0])




More information about the ffmpeg-cvslog mailing list