diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-02-09 22:57:37 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2008-02-09 22:57:37 +0000 |
commit | ae797914dd8db8a6b446c76d28f970e5474ef2d2 (patch) | |
tree | 35a6c31497b67048e6c6e378fd29cc9362307904 | |
parent | 7ce3e4a882318424f5163e2c62bfb3fb2fe9391c (diff) | |
download | ffmpeg-ae797914dd8db8a6b446c76d28f970e5474ef2d2.tar.gz |
Make dither4 & dither8 const.
Originally committed as revision 25967 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.c | 4 | ||||
-rw-r--r-- | libswscale/yuv2rgb.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 4f820e53aa..62a4ab4068 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -194,11 +194,11 @@ static volatile uint64_t attribute_used __attribute__((aligned(8))) g5Dither; static volatile uint64_t attribute_used __attribute__((aligned(8))) g6Dither; static volatile uint64_t attribute_used __attribute__((aligned(8))) r5Dither; -static uint64_t __attribute__((aligned(8))) dither4[2]={ +DECLARE_ASM_CONST(8, uint64_t, dither4[2])={ 0x0103010301030103LL, 0x0200020002000200LL,}; -static uint64_t __attribute__((aligned(8))) dither8[2]={ +DECLARE_ASM_CONST(8, uint64_t, dither8[2])={ 0x0602060206020602LL, 0x0004000400040004LL,}; diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 0b175ffe38..83a7e67cef 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -170,11 +170,11 @@ static volatile uint64_t attribute_used __attribute__((aligned(8))) g5Dither; static volatile uint64_t attribute_used __attribute__((aligned(8))) g6Dither; static volatile uint64_t attribute_used __attribute__((aligned(8))) r5Dither; -static uint64_t __attribute__((aligned(8))) dither4[2]={ +DECLARE_ASM_CONST(8, uint64_t, dither4[2])={ 0x0103010301030103LL, 0x0200020002000200LL,}; -static uint64_t __attribute__((aligned(8))) dither8[2]={ +DECLARE_ASM_CONST(8, uint64_t, dither8[2])={ 0x0602060206020602LL, 0x0004000400040004LL,}; |