summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorMarc Hoffman <mmh@pleasantst.com>2007-03-31 16:20:51 +0000
committerDiego Biurrun <diego@biurrun.de>2007-03-31 16:20:51 +0000
commit19ef2ba57af6412d0cd19072b3721e7ae0136f68 (patch)
treef58874e71b97250c6c5853b052b765903b212fc2 /libavcodec/dct-test.c
parent846dffeb41b2fa6fdb3d2b8a6ad5ff197efc0ec7 (diff)
Replace emms() with emms_c(), patch by Marc Hoffman, mmh pleasantst com.
Originally committed as revision 8571 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 2c16f47e43..16b750c0d3 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -184,7 +184,7 @@ void dct_error(const char *name, int is_idct,
#endif
fdct_func(block);
- emms(); /* for ff_mmx_idct */
+ emms_c(); /* for ff_mmx_idct */
if (fdct_func == fdct_ifast
#ifndef FAAN_POSTSCALE
@@ -286,7 +286,7 @@ void dct_error(const char *name, int is_idct,
it1 += NB_ITS_SPEED;
ti1 = gettime() - ti;
} while (ti1 < 1000000);
- emms();
+ emms_c();
printf("%s %s: %0.1f kdct/s\n",
is_idct ? "IDCT" : "DCT",
@@ -446,7 +446,7 @@ void idct248_error(const char *name,
it1 += NB_ITS_SPEED;
ti1 = gettime() - ti;
} while (ti1 < 1000000);
- emms();
+ emms_c();
printf("%s %s: %0.1f kdct/s\n",
1 ? "IDCT248" : "DCT248",