| Index: patched-ffmpeg-mt/libavcodec/x86/vc1dsp_mmx.c
|
| ===================================================================
|
| --- patched-ffmpeg-mt/libavcodec/x86/vc1dsp_mmx.c (revision 41250)
|
| +++ patched-ffmpeg-mt/libavcodec/x86/vc1dsp_mmx.c (working copy)
|
| @@ -73,7 +73,7 @@
|
| "movq %%mm"#R1", "#OFF"(%1) \n\t" \
|
| "add %2, %0 \n\t"
|
|
|
| -DECLARE_ALIGNED_16(const uint64_t, ff_pw_9) = 0x0009000900090009ULL;
|
| +DECLARE_ALIGNED(16, const uint64_t, ff_pw_9) = 0x0009000900090009ULL;
|
|
|
| /** Sacrifying mm6 allows to pipeline loads from src */
|
| static void vc1_put_ver_16b_shift2_mmx(int16_t *dst,
|
| @@ -442,7 +442,7 @@
|
| static const int shift_value[] = { 0, 5, 1, 5 };\
|
| int shift = (shift_value[hmode]+shift_value[vmode])>>1;\
|
| int r;\
|
| - DECLARE_ALIGNED_16(int16_t, tmp)[12*8];\
|
| + DECLARE_ALIGNED(16, int16_t, tmp)[12*8];\
|
| \
|
| r = (1<<(shift-1)) + rnd-1;\
|
| vc1_put_shift_ver_16bits[vmode](tmp, src-1, stride, r, shift);\
|
| @@ -463,9 +463,6 @@
|
| VC1_MSPEL_MC(put_)
|
| VC1_MSPEL_MC(avg_)
|
|
|
| -void ff_put_vc1_mspel_mc00_mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd);
|
| -void ff_avg_vc1_mspel_mc00_mmx2(uint8_t *dst, const uint8_t *src, int stride, int rnd);
|
| -
|
| /** Macro to ease bicubic filter interpolation functions declarations */
|
| #define DECLARE_FUNCTION(a, b) \
|
| static void put_vc1_mspel_mc ## a ## b ## _mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd) { \
|
|
|