| Index: patched-ffmpeg-mt/libavcodec/x86/dsputilenc_mmx.c
|
| ===================================================================
|
| --- patched-ffmpeg-mt/libavcodec/x86/dsputilenc_mmx.c (revision 41250)
|
| +++ patched-ffmpeg-mt/libavcodec/x86/dsputilenc_mmx.c (working copy)
|
| @@ -1063,7 +1063,7 @@
|
|
|
| #define HADAMARD8_DIFF_MMX(cpu) \
|
| static int hadamard8_diff_##cpu(void *s, uint8_t *src1, uint8_t *src2, int stride, int h){\
|
| - DECLARE_ALIGNED_8(uint64_t, temp)[13];\
|
| + DECLARE_ALIGNED(8, uint64_t, temp)[13];\
|
| int sum;\
|
| \
|
| assert(h==8);\
|
| @@ -1146,7 +1146,7 @@
|
|
|
| #define HADAMARD8_DIFF_SSE2(cpu) \
|
| static int hadamard8_diff_##cpu(void *s, uint8_t *src1, uint8_t *src2, int stride, int h){\
|
| - DECLARE_ALIGNED_16(uint64_t, temp)[4];\
|
| + DECLARE_ALIGNED(16, uint64_t, temp)[4];\
|
| int sum;\
|
| \
|
| assert(h==8);\
|
| @@ -1348,10 +1348,6 @@
|
| #endif //HAVE_SSSE3
|
|
|
|
|
| -void ff_lpc_compute_autocorr_sse2(const int32_t *data, int len, int lag,
|
| - double *autoc);
|
| -
|
| -
|
| void dsputilenc_init_mmx(DSPContext* c, AVCodecContext *avctx)
|
| {
|
| if (mm_flags & FF_MM_MMX) {
|
|
|