Commit f243bf7a authored by Diego Biurrun's avatar Diego Biurrun

x86: dsputil: Remove unused argument from QPEL_OP macro

parent 6e9f8d6a
...@@ -454,7 +454,7 @@ static void ff_put_pixels16_mmxext(uint8_t *block, const uint8_t *pixels, ...@@ -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); 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, \ static void OPNAME ## qpel8_mc00_ ## MMX (uint8_t *dst, uint8_t *src, \
ptrdiff_t stride) \ ptrdiff_t stride) \
{ \ { \
...@@ -835,9 +835,9 @@ static void OPNAME ## qpel16_mc22_ ## MMX(uint8_t *dst, uint8_t *src, \ ...@@ -835,9 +835,9 @@ static void OPNAME ## qpel16_mc22_ ## MMX(uint8_t *dst, uint8_t *src, \
stride, 16); \ stride, 16); \
} }
QPEL_OP(put_, ff_pw_16, _, mmxext) QPEL_OP(put_, _, mmxext)
QPEL_OP(avg_, ff_pw_16, _, mmxext) QPEL_OP(avg_, _, mmxext)
QPEL_OP(put_no_rnd_, ff_pw_15, _no_rnd_, mmxext) QPEL_OP(put_no_rnd_, _no_rnd_, mmxext)
#endif /* HAVE_YASM */ #endif /* HAVE_YASM */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment