diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2008-10-05 21:00:16 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2008-10-05 21:00:16 +0000 |
commit | 7cff2c7f440ecd37cbe1db3b9467d4aa31b315cd (patch) | |
tree | 52394314fd33ff7258c2548506d0d64a7a77fdb1 /libswscale | |
parent | da708eaa22bfb5e884e996a0a11a05055583a5b0 (diff) | |
download | ffmpeg-7cff2c7f440ecd37cbe1db3b9467d4aa31b315cd.tar.gz |
gcc-apple specific fallback not necessary anymore (btw no apple hardware is less than a Intel core, thus it won't come there w/out disabling all the optimizations)
Originally committed as revision 27722 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/rgb2rgb_template.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libswscale/rgb2rgb_template.c b/libswscale/rgb2rgb_template.c index 73004d4a7e..d7c581b44c 100644 --- a/libswscale/rgb2rgb_template.c +++ b/libswscale/rgb2rgb_template.c @@ -52,14 +52,9 @@ #define PREFETCHW "prefetcht0" #define PAVGB "pavgb" #else -#ifdef __APPLE__ -#define PREFETCH "#" -#define PREFETCHW "#" -#else #define PREFETCH " # nop" #define PREFETCHW " # nop" #endif -#endif #ifdef HAVE_3DNOW /* On K6 femms is faster than emms. On K7 femms is directly mapped on emms. */ |