[FFmpeg-cvslog] r21635 - trunk/libavcodec/msmpeg4.c

michael subversion
Thu Feb 4 15:26:58 CET 2010


Author: michael
Date: Thu Feb  4 15:26:57 2010
New Revision: 21635

Log:
Implement cool new vlc code.
Fixes issue1637

Modified:
   trunk/libavcodec/msmpeg4.c

Modified: trunk/libavcodec/msmpeg4.c
==============================================================================
--- trunk/libavcodec/msmpeg4.c	Thu Feb  4 02:54:24 2010	(r21634)
+++ trunk/libavcodec/msmpeg4.c	Thu Feb  4 15:26:57 2010	(r21635)
@@ -1732,9 +1732,7 @@ int ff_msmpeg4_decode_block(MpegEncConte
                             if(s->qscale<8){
                                 ll= SHOW_UBITS(re, &s->gb, 3); SKIP_BITS(re, &s->gb, 3);
                                 if(ll==0){
-                                    if(SHOW_UBITS(re, &s->gb, 1)) av_log(s->avctx, AV_LOG_ERROR, "cool a new vlc code ,contact the ffmpeg developers and upload the file\n");
-                                    SKIP_BITS(re, &s->gb, 1);
-                                    ll=8;
+                                    ll= 8+SHOW_UBITS(re, &s->gb, 1); SKIP_BITS(re, &s->gb, 1);
                                 }
                             }else{
                                 ll=2;



More information about the ffmpeg-cvslog mailing list