diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-09 05:55:45 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-09 05:55:45 +0000 |
commit | 3a18218e7bda338bd1139bd4048cf906a0661a0e (patch) | |
tree | db983a25b7746972396a22f4646b84c13a427724 /libavcodec/vc1.c | |
parent | 91823a6efd6a036e76bca0b6bb7bc98de3a8cf8c (diff) | |
download | ffmpeg-3a18218e7bda338bd1139bd4048cf906a0661a0e.tar.gz |
Enable 4x4 IDCT for FASTTX=0 mode in WMV3
Originally committed as revision 11199 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index ea1fc22739..b1b55a613c 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -816,7 +816,7 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb) v->s.dsp.vc1_inv_trans_8x8 = ff_simple_idct; v->s.dsp.vc1_inv_trans_8x4 = ff_simple_idct84_add; v->s.dsp.vc1_inv_trans_4x8 = ff_simple_idct48_add; -// v->s.dsp.vc1_inv_trans_4x4 = ff_simple_idct44_add; + v->s.dsp.vc1_inv_trans_4x4 = ff_simple_idct44_add; } v->fastuvmc = get_bits1(gb); //common |