summaryrefslogtreecommitdiff
path: root/libavcodec/x86
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-03 14:01:24 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-03 14:01:24 +0000
commit531a3d272150c2e024aecd5b796d07e64b155fcd (patch)
treede1705948a21c782dc2ae57bea27224c7aeccb2a /libavcodec/x86
parent68367bdef0c43c66eff5261b3844242b64cd2a89 (diff)
Use DECLARE_ASM_CONST for non-global ff_vector128 constant used via MANGLE
Originally committed as revision 18325 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86')
-rw-r--r--libavcodec/x86/dsputil_mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c
index 7d64cfb584..cf9dad41b2 100644
--- a/libavcodec/x86/dsputil_mmx.c
+++ b/libavcodec/x86/dsputil_mmx.c
@@ -272,7 +272,7 @@ void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size
:"memory");
}
-DECLARE_ALIGNED_8(const unsigned char, ff_vector128[8]) =
+DECLARE_ASM_CONST(8, uint8_t, ff_vector128[8]) =
{ 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80 };
#define put_signed_pixels_clamped_mmx_half(off) \