Mercurial > libavcodec.hg
changeset 7876:3fd591f125b5 libavcodec
MMX/SSE2 VP3 IDCT are bitexact now that the dequantization matrices are permutated correctly
author | conrad |
---|---|
date | Wed, 17 Sep 2008 19:30:03 +0000 |
parents | a57aee2e0ae0 |
children | 8759422d660a |
files | i386/dsputil_mmx.c |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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;