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/hpeldsp_init.c | |
parent | db9aee6ccf183508835acc325f5ad87d595eacc4 (diff) | |
download | ffmpeg-7edaf4edb5c3c04f34ad1242680cbc32d11f4087.tar.gz |
x86: rnd_template: Eliminate pointless OP_AVG macro indirection
Diffstat (limited to 'libavcodec/x86/hpeldsp_init.c')
-rw-r--r-- | libavcodec/x86/hpeldsp_init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/x86/hpeldsp_init.c b/libavcodec/x86/hpeldsp_init.c index bcfa715671..0f30517a12 100644 --- a/libavcodec/x86/hpeldsp_init.c +++ b/libavcodec/x86/hpeldsp_init.c @@ -91,7 +91,6 @@ void ff_avg_pixels8_xy2_3dnow(uint8_t *block, const uint8_t *pixels, #define SET_RND MOVQ_WONE #define PAVGBP(a, b, c, d, e, f) PAVGBP_MMX_NO_RND(a, b, c, d, e, f) #define PAVGB(a, b, c, e) PAVGB_MMX_NO_RND(a, b, c, e) -#define OP_AVG(a, b, c, e) PAVGB_MMX(a, b, c, e) #include "hpeldsp_rnd_template.c" @@ -113,7 +112,6 @@ void ff_avg_pixels8_xy2_3dnow(uint8_t *block, const uint8_t *pixels, #undef SET_RND #undef PAVGBP #undef PAVGB -#undef OP_AVG #endif /* HAVE_INLINE_ASM */ |