From b6809f179fff6aa44b679288b98dce5347fd5138 Mon Sep 17 00:00:00 2001 From: jkeil Date: Tue, 27 Nov 2001 16:55:12 +0000 Subject: [PATCH] {f}emms is only needed on x86 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3161 b3059339-0415-0410-9bf9-f77b7e298cf2 --- dec_video.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dec_video.c b/dec_video.c index 0e88cbd3c7..1ef2d7ed4c 100644 --- a/dec_video.c +++ b/dec_video.c @@ -808,6 +808,7 @@ if(verbose>1){ } // switch //------------------------ frame decoded. -------------------- +#ifdef ARCH_X86 // some codecs is broken, and doesn't restore MMX state :( // it happens usually with broken/damaged files. if(gCpuCaps.has3DNow){ @@ -816,6 +817,7 @@ if(gCpuCaps.has3DNow){ else if(gCpuCaps.hasMMX){ __asm __volatile ("emms\n\t":::"memory"); } +#endif t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f;