diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-09 11:01:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-09 11:01:14 +0200 |
commit | 3469c24a1084f677b407bb9fd4099d7a6b6bbc6c (patch) | |
tree | 47ceaab1f59ddadb8574a3c29499aa0c1f48d602 /libavcodec/x86/dsputil_mmx.c | |
parent | e4723a82f7088f5d4ab32ada529c3f69ba3606b0 (diff) | |
parent | 87614667606b42476f9017d79faf12b45a0bd77c (diff) | |
download | ffmpeg-3469c24a1084f677b407bb9fd4099d7a6b6bbc6c.tar.gz |
Merge commit '87614667606b42476f9017d79faf12b45a0bd77c'
* commit '87614667606b42476f9017d79faf12b45a0bd77c':
x86: dsputil: Move ff_pd assembly constants to the only place they are used
Conflicts:
libavcodec/x86/lpc.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/dsputil_mmx.c')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index c57a31e336..f89a351aeb 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -51,9 +51,6 @@ DECLARE_ALIGNED(16, const xmm_reg, ff_pw_1019) = { 0x03FB03FB03FB03FBULL, 0x03F DECLARE_ALIGNED(8, const uint64_t, ff_pb_FC) = 0xFCFCFCFCFCFCFCFCULL; -DECLARE_ALIGNED(16, const double, ff_pd_1)[2] = { 1.0, 1.0 }; -DECLARE_ALIGNED(16, const double, ff_pd_2)[2] = { 2.0, 2.0 }; - void ff_put_pixels8_l2_mmxext(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h); |