[FFmpeg-cvslog] r15345 - trunk/libavcodec/i386/dsputil_mmx.c
conrad
subversion
Wed Sep 17 21:30:04 CEST 2008
Author: conrad
Date: Wed Sep 17 21:30:03 2008
New Revision: 15345
Log:
MMX/SSE2 VP3 IDCT are bitexact now that the dequantization matrices are permutated correctly
Modified:
trunk/libavcodec/i386/dsputil_mmx.c
Modified: trunk/libavcodec/i386/dsputil_mmx.c
==============================================================================
--- trunk/libavcodec/i386/dsputil_mmx.c (original)
+++ trunk/libavcodec/i386/dsputil_mmx.c Wed Sep 17 21:30:03 2008
@@ -2528,9 +2528,7 @@ void dsputil_init_mmx(DSPContext* c, AVC
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;
More information about the ffmpeg-cvslog
mailing list