diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2006-09-14 22:13:23 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2006-09-14 22:13:23 +0000 |
commit | 2a2311bee3284941117ac610921817d541d0c42f (patch) | |
tree | 19921de168900ba8e8bebad21d989adc11b73fbb /libavcodec | |
parent | 0b97eea3068114a5214bb8e9fcb1a751b31fb364 (diff) | |
download | ffmpeg-2a2311bee3284941117ac610921817d541d0c42f.tar.gz |
disable vp3 mmx idct for theora files to avoid artifacts
(see theora-a4_v6-k250-s0_2.ogg)
Originally committed as revision 6253 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 09d781fb2a..6fab8f6473 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -3056,6 +3056,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM; #endif }else if(idct_algo==FF_IDCT_VP3 && + avctx->codec->id!=CODEC_ID_THEORA && !(avctx->flags & CODEC_FLAG_BITEXACT)){ if(mm_flags & MM_SSE2){ c->idct_put= ff_vp3_idct_put_sse2; |