# HG changeset patch # User conrad # Date 1221679803 0 # Node ID 3fd591f125b5d01a8fa34319a394a29c132b4689 # Parent a57aee2e0ae0c4c9fc4494759ae9336e0dd0b1ed MMX/SSE2 VP3 IDCT are bitexact now that the dequantization matrices are permutated correctly diff -r a57aee2e0ae0 -r 3fd591f125b5 i386/dsputil_mmx.c --- a/i386/dsputil_mmx.c Wed Sep 17 19:29:40 2008 +0000 +++ b/i386/dsputil_mmx.c Wed Sep 17 19:30:03 2008 +0000 @@ -2528,9 +2528,7 @@ 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;