diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-10-18 16:10:36 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-10-18 16:10:36 +0000 |
commit | bbfc038f09ff23cfef620353565fe2ebf4b91ca0 (patch) | |
tree | 34616d1a753e95cea1459dad02f44e4b82ac4c57 /libavcodec/vc1.c | |
parent | ff4b050ab49fc0f699a6e4613d8c8dfe0153d132 (diff) | |
download | ffmpeg-bbfc038f09ff23cfef620353565fe2ebf4b91ca0.tar.gz |
WMV3 mode with FASTTX=0 seems to use standard IDCT instead of own 8x8 transform
Originally committed as revision 10782 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 3be8f01263..420017c65b 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -818,9 +818,7 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb) 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 |