Commit 059ce0d0 authored by reimar's avatar reimar

Use DECLARE_ASM_CONST for non-global ff_vector128 constant used via MANGLE


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18325 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c89aedf3
...@@ -272,7 +272,7 @@ void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size ...@@ -272,7 +272,7 @@ void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size
:"memory"); :"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 }; { 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80 };
#define put_signed_pixels_clamped_mmx_half(off) \ #define put_signed_pixels_clamped_mmx_half(off) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment