changeset 2691:a24b82b5a704 libavcodec

disabling vp3 mmx&mmx2 idcts, they must be ported over to the lavc idct API, ill port the vp3 c idct
author michael
date Tue, 17 May 2005 09:11:48 +0000
parents 9cd85de24bcb
children fb8f26fc57eb
files i386/dsputil_mmx.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/i386/dsputil_mmx.c	Tue May 17 08:46:40 2005 +0000
+++ b/i386/dsputil_mmx.c	Tue May 17 09:11:48 2005 +0000
@@ -3200,13 +3200,13 @@
         }
 
         /* VP3 optimized DSP functions */
-        if (mm_flags & MM_SSE2) {
-            c->vp3_dsp_init = vp3_dsp_init_sse2;
-            c->vp3_idct = vp3_idct_sse2;
-        } else {
-            c->vp3_dsp_init = vp3_dsp_init_mmx;
-            c->vp3_idct = vp3_idct_mmx;
-        }
+//         if (mm_flags & MM_SSE2) {
+//             c->vp3_dsp_init = vp3_dsp_init_sse2;
+//             c->vp3_idct = vp3_idct_sse2;
+//         } else {
+//             c->vp3_dsp_init = vp3_dsp_init_mmx;
+//             c->vp3_idct = vp3_idct_mmx;
+//         }
 
 #ifdef CONFIG_ENCODERS
         c->get_pixels = get_pixels_mmx;