diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-10-04 16:48:07 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2008-10-04 16:48:07 +0000 |
commit | 8539d8b5730384d4f92ad3336c93163fc6ee7d89 (patch) | |
tree | 01b0986cf4bff3739026e4c494b1ec2281c5f6fd | |
parent | 92c7b4713d9915b21508250953f8d888e621ab11 (diff) | |
download | ffmpeg-8539d8b5730384d4f92ad3336c93163fc6ee7d89.tar.gz |
Declare ff_pw_53 and ff_pw_18 as assembler constants.
Patch by Diego 'Flameeyes' Petten
Originally committed as revision 15553 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/vc1dsp_mmx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/i386/vc1dsp_mmx.c b/libavcodec/i386/vc1dsp_mmx.c index c3df9415ea..2bbe3fa465 100644 --- a/libavcodec/i386/vc1dsp_mmx.c +++ b/libavcodec/i386/vc1dsp_mmx.c @@ -203,8 +203,8 @@ static void vc1_put_shift2_mmx(uint8_t *dst, const uint8_t *src, * Filter coefficients made global to allow access by all 1 or 3 quarter shift * interpolation functions. */ -DECLARE_ALIGNED_16(const uint64_t, ff_pw_53) = 0x0035003500350035ULL; -DECLARE_ALIGNED_16(const uint64_t, ff_pw_18) = 0x0012001200120012ULL; +DECLARE_ASM_CONST(16, uint64_t, ff_pw_53) = 0x0035003500350035ULL; +DECLARE_ASM_CONST(16, uint64_t, ff_pw_18) = 0x0012001200120012ULL; /** * Core of the 1/4 and 3/4 shift bicubic interpolation. |