[FFmpeg-cvslog] r11189 - trunk/libavcodec/vc1.c
kostya
subversion
Sat Dec 8 11:50:51 CET 2007
Author: kostya
Date: Sat Dec 8 11:50:50 2007
New Revision: 11189
Log:
Use IDCT functions when FASTTX=0
Modified:
trunk/libavcodec/vc1.c
Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c (original)
+++ trunk/libavcodec/vc1.c Sat Dec 8 11:50:50 2007
@@ -814,6 +814,9 @@ static int decode_sequence_header(AVCode
if (!v->res_fasttx)
{
v->s.dsp.vc1_inv_trans_8x8 = simple_idct;
+ v->s.dsp.vc1_inv_trans_8x4 = simple_idct84_add;
+ v->s.dsp.vc1_inv_trans_4x8 = simple_idct48_add;
+// v->s.dsp.vc1_inv_trans_4x4 = simple_idct44_add;
}
v->fastuvmc = get_bits1(gb); //common
More information about the ffmpeg-cvslog
mailing list