From d9fda003c59a6c8aed97502fa4fdaef4a9bb29e3 Mon Sep 17 00:00:00 2001 From: conrad Date: Wed, 17 Sep 2008 19:30:03 +0000 Subject: [PATCH] MMX/SSE2 VP3 IDCT are bitexact now that the dequantization matrices are permutated correctly git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15345 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/i386/dsputil_mmx.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 7dbb6a3d1..1ee9a2e51 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -2528,9 +2528,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM; #endif }else if((ENABLE_VP3_DECODER || ENABLE_VP5_DECODER || ENABLE_VP6_DECODER) && - idct_algo==FF_IDCT_VP3 && - avctx->codec->id!=CODEC_ID_THEORA && - !(avctx->flags & CODEC_FLAG_BITEXACT)){ + idct_algo==FF_IDCT_VP3){ if(mm_flags & MM_SSE2){ c->idct_put= ff_vp3_idct_put_sse2; c->idct_add= ff_vp3_idct_add_sse2; -- 2.39.2