diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-05-07 00:15:41 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-07 18:03:34 +0200 |
commit | 7edaf4edb5c3c04f34ad1242680cbc32d11f4087 (patch) | |
tree | 744dd68c991567e9cb6ba0839e592097aa8a75dd /libavcodec/x86/dsputil_mmx.c | |
parent | db9aee6ccf183508835acc325f5ad87d595eacc4 (diff) | |
download | ffmpeg-7edaf4edb5c3c04f34ad1242680cbc32d11f4087.tar.gz |
x86: rnd_template: Eliminate pointless OP_AVG macro indirection
Diffstat (limited to 'libavcodec/x86/dsputil_mmx.c')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index 679f27298e..46859a68df 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -106,7 +106,6 @@ void ff_put_no_rnd_mpeg4_qpel8_v_lowpass_mmxext(uint8_t *dst, uint8_t *src, #define SET_RND MOVQ_WTWO #define PAVGBP(a, b, c, d, e, f) PAVGBP_MMX(a, b, c, d, e, f) #define PAVGB(a, b, c, e) PAVGB_MMX(a, b, c, e) -#define OP_AVG(a, b, c, e) PAVGB_MMX(a, b, c, e) #include "rnd_template.c" @@ -114,7 +113,6 @@ void ff_put_no_rnd_mpeg4_qpel8_v_lowpass_mmxext(uint8_t *dst, uint8_t *src, #undef SET_RND #undef PAVGBP #undef PAVGB -#undef OP_AVG /***********************************/ /* standard MMX */ |