Commit a099ad2e authored by gpoirier's avatar gpoirier

Declare ff_pw_53 and ff_pw_18 as assembler constants.

Patch by Diego 'Flameeyes' Petten


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15553 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2ebb39f9
...@@ -203,8 +203,8 @@ static void vc1_put_shift2_mmx(uint8_t *dst, const uint8_t *src, ...@@ -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 * Filter coefficients made global to allow access by all 1 or 3 quarter shift
* interpolation functions. * interpolation functions.
*/ */
DECLARE_ALIGNED_16(const uint64_t, ff_pw_53) = 0x0035003500350035ULL; DECLARE_ASM_CONST(16, uint64_t, ff_pw_53) = 0x0035003500350035ULL;
DECLARE_ALIGNED_16(const uint64_t, ff_pw_18) = 0x0012001200120012ULL; DECLARE_ASM_CONST(16, uint64_t, ff_pw_18) = 0x0012001200120012ULL;
/** /**
* Core of the 1/4 and 3/4 shift bicubic interpolation. * Core of the 1/4 and 3/4 shift bicubic interpolation.
......
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