From 110796739ab32854dc0b6b0a1c95e6ae98889062 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 23 Apr 2013 18:36:25 +0200 Subject: x86: hpeldsp: Move avg_pixels8_x2_mmx() out of hpeldsp_rnd_template.c The function is only instantiated once, so there is no point in keeping it in a template file. --- libavcodec/x86/hpeldsp_rnd_template.c | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'libavcodec/x86/hpeldsp_rnd_template.c') diff --git a/libavcodec/x86/hpeldsp_rnd_template.c b/libavcodec/x86/hpeldsp_rnd_template.c index 458311c3e3..4976caaaa7 100644 --- a/libavcodec/x86/hpeldsp_rnd_template.c +++ b/libavcodec/x86/hpeldsp_rnd_template.c @@ -134,28 +134,6 @@ static void DEF(put, pixels8_y2)(uint8_t *block, const uint8_t *pixels, ptrdiff_ :REG_a, "memory"); } -#ifndef NO_RND -static void DEF(avg, pixels8_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h) -{ - MOVQ_BFE(mm6); - JUMPALIGN(); - do { - __asm__ volatile( - "movq %1, %%mm0 \n\t" - "movq 1%1, %%mm1 \n\t" - "movq %0, %%mm3 \n\t" - PAVGB(%%mm0, %%mm1, %%mm2, %%mm6) - OP_AVG(%%mm3, %%mm2, %%mm0, %%mm6) - "movq %%mm0, %0 \n\t" - :"+m"(*block) - :"m"(*pixels) - :"memory"); - pixels += line_size; - block += line_size; - } while (--h); -} -#endif // NO_RND - static void DEF(avg, pixels16_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h) { MOVQ_BFE(mm6); -- cgit v1.2.3