diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-19 08:50:37 -0500 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-19 10:51:15 -0500 |
commit | bf6fa732459399fac215bdfa44dd39a6fb1d1e01 (patch) | |
tree | 421037e7df815c341b44d2518fae30aa32b71c9a /libavcodec | |
parent | 2bbec1eda46d907605772a8b6e8263caa4bc4c82 (diff) | |
download | ffmpeg-bf6fa732459399fac215bdfa44dd39a6fb1d1e01.tar.gz |
dsputil_mmx.c: remove ff_vector128.
Remove ff_vector128, it is identical to ff_pb_80.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index 16ad965ec1..a5b0b3ae61 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -286,9 +286,6 @@ void ff_put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_s :"memory"); } -DECLARE_ASM_CONST(8, uint8_t, ff_vector128)[8] = - { 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80 }; - #define put_signed_pixels_clamped_mmx_half(off) \ "movq "#off"(%2), %%mm1 \n\t"\ "movq 16+"#off"(%2), %%mm2 \n\t"\ @@ -313,7 +310,7 @@ void ff_put_signed_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int x86_reg line_skip3; __asm__ volatile ( - "movq "MANGLE(ff_vector128)", %%mm0 \n\t" + "movq "MANGLE(ff_pb_80)", %%mm0 \n\t" "lea (%3, %3, 2), %1 \n\t" put_signed_pixels_clamped_mmx_half(0) "lea (%0, %3, 4), %0 \n\t" |