diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-05-08 01:55:21 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-08 18:18:58 +0200 |
commit | f243bf7aa27fe4d37f7a57ccdabc149a0cc84b95 (patch) | |
tree | 0ab3d5183924ad407033c9f8fe48642c229d7b8c | |
parent | 6e9f8d6a7d7392a236df19fef6f4eba41f18167e (diff) | |
download | ffmpeg-f243bf7aa27fe4d37f7a57ccdabc149a0cc84b95.tar.gz |
x86: dsputil: Remove unused argument from QPEL_OP macro
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index 546cd7524f..b6d9f62c1b 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -454,7 +454,7 @@ static void ff_put_pixels16_mmxext(uint8_t *block, const uint8_t *pixels, ff_put_pixels8_mmxext(block + 8, pixels + 8, line_size, h); } -#define QPEL_OP(OPNAME, ROUNDER, RND, MMX) \ +#define QPEL_OP(OPNAME, RND, MMX) \ static void OPNAME ## qpel8_mc00_ ## MMX (uint8_t *dst, uint8_t *src, \ ptrdiff_t stride) \ { \ @@ -835,9 +835,9 @@ static void OPNAME ## qpel16_mc22_ ## MMX(uint8_t *dst, uint8_t *src, \ stride, 16); \ } -QPEL_OP(put_, ff_pw_16, _, mmxext) -QPEL_OP(avg_, ff_pw_16, _, mmxext) -QPEL_OP(put_no_rnd_, ff_pw_15, _no_rnd_, mmxext) +QPEL_OP(put_, _, mmxext) +QPEL_OP(avg_, _, mmxext) +QPEL_OP(put_no_rnd_, _no_rnd_, mmxext) #endif /* HAVE_YASM */ |