[FFmpeg-cvslog] r15553 - trunk/libavcodec/i386/vc1dsp_mmx.c
gpoirier
subversion
Sat Oct 4 18:48:07 CEST 2008
Author: gpoirier
Date: Sat Oct 4 18:48:07 2008
New Revision: 15553
Log:
Declare ff_pw_53 and ff_pw_18 as assembler constants.
Patch by Diego 'Flameeyes' Petten
Modified:
trunk/libavcodec/i386/vc1dsp_mmx.c
Modified: trunk/libavcodec/i386/vc1dsp_mmx.c
==============================================================================
--- trunk/libavcodec/i386/vc1dsp_mmx.c (original)
+++ trunk/libavcodec/i386/vc1dsp_mmx.c Sat Oct 4 18:48:07 2008
@@ -203,8 +203,8 @@ static void vc1_put_shift2_mmx(uint8_t *
* 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.
More information about the ffmpeg-cvslog
mailing list