[FFmpeg-cvslog] r10782 - trunk/libavcodec/vc1.c

kostya subversion
Thu Oct 18 18:10:36 CEST 2007


Author: kostya
Date: Thu Oct 18 18:10:36 2007
New Revision: 10782

Log:
WMV3 mode with FASTTX=0 seems to use standard IDCT instead of own 8x8 transform

Modified:
   trunk/libavcodec/vc1.c

Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c	(original)
+++ trunk/libavcodec/vc1.c	Thu Oct 18 18:10:36 2007
@@ -818,9 +818,7 @@ static int decode_sequence_header(AVCode
     v->res_fasttx = get_bits1(gb);
     if (!v->res_fasttx)
     {
-        av_log(avctx, AV_LOG_ERROR,
-               "0 for reserved RES_FASTTX is forbidden\n");
-        //return -1;
+        v->s.dsp.vc1_inv_trans_8x8 = v->s.dsp.idct;
     }
 
     v->fastuvmc =  get_bits1(gb); //common




More information about the ffmpeg-cvslog mailing list