diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-07-28 09:07:09 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-07-28 09:07:09 +0000 |
commit | 6979600818329be76d8ac6c292e8358e49e2e729 (patch) | |
tree | 6f7f2543fa3ab6fc91e3956c1f7588b7970d93e6 /libswscale/rgb2rgb.c | |
parent | 0154bae137c6433c82d6bd9fd0e9d4c6633e886a (diff) | |
download | ffmpeg-6979600818329be76d8ac6c292e8358e49e2e729.tar.gz |
Comment some #endif lines.
Originally committed as revision 19211 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/rgb2rgb.c')
-rw-r--r-- | libswscale/rgb2rgb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/rgb2rgb.c b/libswscale/rgb2rgb.c index 2e4cc2c0dc..0b51b04f0e 100644 --- a/libswscale/rgb2rgb.c +++ b/libswscale/rgb2rgb.c @@ -134,7 +134,7 @@ static uint64_t __attribute__((aligned(8))) dither8[2]={ 0x0602060206020602LL, 0x0004000400040004LL,}; #endif -#endif +#endif /* defined(ARCH_X86) || defined(ARCH_X86_64) */ #define RGB2YUV_SHIFT 8 #define BY ((int)( 0.098*(1<<RGB2YUV_SHIFT)+0.5)) @@ -287,7 +287,7 @@ void sws_rgb2rgb_init(int flags){ vu9_to_vu12= vu9_to_vu12_MMX; yvu9_to_yuy2= yvu9_to_yuy2_MMX; }else -#endif +#endif /* defined(ARCH_X86) || defined(ARCH_X86_64) */ { rgb15to16= rgb15to16_C; rgb15to24= rgb15to24_C; |