]> git.sesse.net Git - ffmpeg/commitdiff
disable the vp3 mmx and sse2 idcts, their output doesnt match the c idct (tested...
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 19 Jul 2006 09:49:21 +0000 (09:49 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 19 Jul 2006 09:49:21 +0000 (09:49 +0000)
Originally committed as revision 5788 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/i386/dsputil_mmx.c

index 6a44e528eef12a15bccad88552ca95fda1b71f44..c8d3ee85013c9cb4ee5ad3dd07a036c63d111e82 100644 (file)
@@ -2764,6 +2764,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
                     c->idct    = ff_mmx_idct;
                 }
                 c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM;
+#if 0
             }else if(idct_algo==FF_IDCT_VP3){
                 if(mm_flags & MM_SSE2){
                     c->idct_put= ff_vp3_idct_put_sse2;
@@ -2777,6 +2778,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
                     c->idct    = ff_vp3_idct_mmx;
                     c->idct_permutation_type= FF_PARTTRANS_IDCT_PERM;
                 }
+#endif
 #ifdef CONFIG_GPL
             }else if(idct_algo==FF_IDCT_XVIDMMX){
                 if(mm_flags & MM_MMXEXT){