1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-12 07:30:54 +02:00

Use emms_c() instead of ifdef

patch by: Ronald S. Bultje rsbultje a gmail d com

Originally committed as revision 10616 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje 2007-09-29 15:09:34 +00:00 committed by Andreas Öman
parent f8f88a42cf
commit 55ffe9df2a

View File

@ -2855,9 +2855,7 @@ int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
width, height);
}
}
#ifdef HAVE_MMX
emms();
#endif
emms_c();
return 0;
}