diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-10-22 10:23:38 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-10-22 10:23:38 +0000 |
commit | bf672ac73f37c21bd87dca63ea9f65de98958baf (patch) | |
tree | e432c0db6a57ae12b11dfc376800b178302cf38a /libavcodec/vc1.c | |
parent | c6137a61f4043ae9130db9475cfbe6d98005b255 (diff) | |
download | ffmpeg-bf672ac73f37c21bd87dca63ea9f65de98958baf.tar.gz |
Use simple IDCT for now
Originally committed as revision 10835 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 9736295b17..8046f33935 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -33,6 +33,7 @@ #include "vc1acdata.h" #include "msmpeg4data.h" #include "unary.h" +#include "simple_idct.h" #undef NDEBUG #include <assert.h> @@ -818,7 +819,7 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb) v->res_fasttx = get_bits1(gb); if (!v->res_fasttx) { - v->s.dsp.vc1_inv_trans_8x8 = v->s.dsp.idct; + v->s.dsp.vc1_inv_trans_8x8 = simple_idct; } v->fastuvmc = get_bits1(gb); //common |