From 0bd134abd3f661ee35e07df979e90e6b4d499163 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 17 May 2008 14:36:44 +0000 Subject: [PATCH] Simplify vsad16_mmx2(). Originally committed as revision 13193 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/i386/dsputilenc_mmx.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavcodec/i386/dsputilenc_mmx.c b/libavcodec/i386/dsputilenc_mmx.c index 7d471bd2f8..e7893de487 100644 --- a/libavcodec/i386/dsputilenc_mmx.c +++ b/libavcodec/i386/dsputilenc_mmx.c @@ -823,16 +823,15 @@ static int vsad16_mmx2(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, i "movq 8(%1),%%mm3\n" "add %3,%0\n" "add %3,%1\n" - "subl $2, %%ecx\n" "psubb %%mm2, %%mm0\n" "psubb %%mm3, %%mm1\n" "pxor %%mm7, %%mm0\n" "pxor %%mm7, %%mm1\n" - SUM(%%mm0, %%mm1, %%mm4, %%mm5) + "jmp 2f\n" "1:\n" SUM(%%mm4, %%mm5, %%mm0, %%mm1) - + "2:\n" SUM(%%mm0, %%mm1, %%mm4, %%mm5) "subl $2, %%ecx\n"