changeset 11993:c15e87b9767b libavcodec

Change MMXEXT to MMX2, MMXEXT is deprecated
author bcoudurier
date Mon, 28 Jun 2010 21:12:00 +0000
parents da388061b227
children ea2cb1a9e815
files x86/h264dsp_mmx.c x86/vp8dsp-init.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/x86/h264dsp_mmx.c	Mon Jun 28 19:14:40 2010 +0000
+++ b/x86/h264dsp_mmx.c	Mon Jun 28 21:12:00 2010 +0000
@@ -2364,7 +2364,7 @@
         }
     }
 
-    if (mm_flags & FF_MM_MMXEXT) {
+    if (mm_flags & FF_MM_MMX2) {
         h->pred16x16[HOR_PRED8x8 ] = ff_pred16x16_horizontal_mmxext;
         h->pred16x16[DC_PRED8x8  ] = ff_pred16x16_dc_mmxext;
         h->pred8x8  [HOR_PRED8x8 ] = ff_pred8x8_horizontal_mmxext;
--- a/x86/vp8dsp-init.c	Mon Jun 28 19:14:40 2010 +0000
+++ b/x86/vp8dsp-init.c	Mon Jun 28 21:12:00 2010 +0000
@@ -236,7 +236,7 @@
 
     /* note that 4-tap width=16 functions are missing because w=16
      * is only used for luma, and luma is always a copy or sixtap. */
-    if (mm_flags & FF_MM_MMXEXT) {
+    if (mm_flags & FF_MM_MMX2) {
         VP8_LUMA_MC_FUNC(0, 16, mmxext);
         VP8_MC_FUNC(1, 8, mmxext);
         VP8_MC_FUNC(1, 4, mmxext);