2001-08-15 22:25:32 +00:00
|
|
|
/*
|
|
|
|
* MMX optimized motion estimation
|
2002-05-25 22:45:33 +00:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard.
|
2004-01-10 16:04:55 +00:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer
|
2001-08-15 22:25:32 +00:00
|
|
|
*
|
2002-05-25 22:45:33 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
2001-08-15 22:25:32 +00:00
|
|
|
*
|
2002-05-25 22:45:33 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2001-08-15 22:25:32 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:45:33 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-08-15 22:25:32 +00:00
|
|
|
*
|
2002-05-25 22:45:33 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-08-15 22:25:32 +00:00
|
|
|
*
|
2002-03-27 21:25:22 +00:00
|
|
|
* mostly by Michael Niedermayer <michaelni@gmx.at>
|
2001-08-15 22:25:32 +00:00
|
|
|
*/
|
|
|
|
#include "../dsputil.h"
|
2006-07-03 10:52:07 +00:00
|
|
|
#include "x86_cpu.h"
|
2001-08-15 22:25:32 +00:00
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static const __attribute__ ((aligned(8))) uint64_t round_tab[3]={
|
2003-10-24 20:09:30 +00:00
|
|
|
0x0000000000000000ULL,
|
|
|
|
0x0001000100010001ULL,
|
|
|
|
0x0002000200020002ULL,
|
2002-03-27 21:25:22 +00:00
|
|
|
};
|
2001-08-15 22:25:32 +00:00
|
|
|
|
2004-02-29 22:10:18 +00:00
|
|
|
static attribute_used __attribute__ ((aligned(8))) uint64_t bone= 0x0101010101010101LL;
|
2002-04-21 22:41:49 +00:00
|
|
|
|
2003-12-30 16:07:57 +00:00
|
|
|
static inline void sad8_1_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h)
|
2001-08-15 22:25:32 +00:00
|
|
|
{
|
2004-10-11 02:19:29 +00:00
|
|
|
long len= -(stride*h);
|
2002-03-27 21:25:22 +00:00
|
|
|
asm volatile(
|
2006-08-12 16:37:31 +00:00
|
|
|
ASMALIGN(4)
|
2005-12-22 01:10:11 +00:00
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm4 \n\t"
|
|
|
|
"add %3, %%"REG_a" \n\t"
|
|
|
|
"psubusb %%mm0, %%mm2 \n\t"
|
|
|
|
"psubusb %%mm4, %%mm0 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm5 \n\t"
|
|
|
|
"psubusb %%mm1, %%mm3 \n\t"
|
|
|
|
"psubusb %%mm5, %%mm1 \n\t"
|
|
|
|
"por %%mm2, %%mm0 \n\t"
|
|
|
|
"por %%mm1, %%mm3 \n\t"
|
|
|
|
"movq %%mm0, %%mm1 \n\t"
|
|
|
|
"movq %%mm3, %%mm2 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm0 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm1 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm3 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm2 \n\t"
|
|
|
|
"paddw %%mm1, %%mm0 \n\t"
|
|
|
|
"paddw %%mm3, %%mm2 \n\t"
|
|
|
|
"paddw %%mm2, %%mm0 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"add %3, %%"REG_a" \n\t"
|
|
|
|
" js 1b \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "+a" (len)
|
2004-10-11 02:19:29 +00:00
|
|
|
: "r" (blk1 - len), "r" (blk2 - len), "r" ((long)stride)
|
2002-03-27 21:25:22 +00:00
|
|
|
);
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2003-12-30 16:07:57 +00:00
|
|
|
static inline void sad8_1_mmx2(uint8_t *blk1, uint8_t *blk2, int stride, int h)
|
2001-08-15 22:25:32 +00:00
|
|
|
{
|
2004-10-11 02:19:29 +00:00
|
|
|
long len= -(stride*h);
|
2002-03-27 21:25:22 +00:00
|
|
|
asm volatile(
|
2006-08-12 16:37:31 +00:00
|
|
|
ASMALIGN(4)
|
2005-12-22 01:10:11 +00:00
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"psadbw %%mm2, %%mm0 \n\t"
|
|
|
|
"add %3, %%"REG_a" \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"psadbw %%mm1, %%mm3 \n\t"
|
|
|
|
"paddw %%mm3, %%mm0 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"add %3, %%"REG_a" \n\t"
|
|
|
|
" js 1b \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "+a" (len)
|
2004-10-11 02:19:29 +00:00
|
|
|
: "r" (blk1 - len), "r" (blk2 - len), "r" ((long)stride)
|
2002-03-27 21:25:22 +00:00
|
|
|
);
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static inline void sad8_2_mmx2(uint8_t *blk1a, uint8_t *blk1b, uint8_t *blk2, int stride, int h)
|
2001-08-15 22:25:32 +00:00
|
|
|
{
|
2004-10-11 02:19:29 +00:00
|
|
|
long len= -(stride*h);
|
2002-03-27 21:25:22 +00:00
|
|
|
asm volatile(
|
2006-08-12 16:37:31 +00:00
|
|
|
ASMALIGN(4)
|
2005-12-22 01:10:11 +00:00
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"pavgb %%mm2, %%mm0 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"psadbw %%mm2, %%mm0 \n\t"
|
|
|
|
"add %4, %%"REG_a" \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"pavgb %%mm1, %%mm3 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"psadbw %%mm1, %%mm3 \n\t"
|
|
|
|
"paddw %%mm3, %%mm0 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"add %4, %%"REG_a" \n\t"
|
|
|
|
" js 1b \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "+a" (len)
|
2004-10-11 02:19:29 +00:00
|
|
|
: "r" (blk1a - len), "r" (blk1b -len), "r" (blk2 - len), "r" ((long)stride)
|
2002-03-27 21:25:22 +00:00
|
|
|
);
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static inline void sad8_4_mmx2(uint8_t *blk1, uint8_t *blk2, int stride, int h)
|
2002-03-27 21:25:22 +00:00
|
|
|
{ //FIXME reuse src
|
2004-10-11 02:19:29 +00:00
|
|
|
long len= -(stride*h);
|
2002-03-27 21:25:22 +00:00
|
|
|
asm volatile(
|
2006-08-12 16:37:31 +00:00
|
|
|
ASMALIGN(4)
|
2005-12-22 01:10:11 +00:00
|
|
|
"movq "MANGLE(bone)", %%mm5 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"movq 1(%1, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"movq 1(%2, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"pavgb %%mm2, %%mm0 \n\t"
|
|
|
|
"pavgb %%mm1, %%mm3 \n\t"
|
|
|
|
"psubusb %%mm5, %%mm3 \n\t"
|
|
|
|
"pavgb %%mm3, %%mm0 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"psadbw %%mm2, %%mm0 \n\t"
|
|
|
|
"add %4, %%"REG_a" \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"movq 1(%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"movq 1(%2, %%"REG_a"), %%mm4 \n\t"
|
|
|
|
"pavgb %%mm3, %%mm1 \n\t"
|
|
|
|
"pavgb %%mm4, %%mm2 \n\t"
|
|
|
|
"psubusb %%mm5, %%mm2 \n\t"
|
|
|
|
"pavgb %%mm1, %%mm2 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"psadbw %%mm1, %%mm2 \n\t"
|
|
|
|
"paddw %%mm2, %%mm0 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"add %4, %%"REG_a" \n\t"
|
|
|
|
" js 1b \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "+a" (len)
|
2004-10-11 02:19:29 +00:00
|
|
|
: "r" (blk1 - len), "r" (blk1 - len + stride), "r" (blk2 - len), "r" ((long)stride)
|
2002-03-27 21:25:22 +00:00
|
|
|
);
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static inline void sad8_2_mmx(uint8_t *blk1a, uint8_t *blk1b, uint8_t *blk2, int stride, int h)
|
2001-08-15 22:25:32 +00:00
|
|
|
{
|
2004-10-11 02:19:29 +00:00
|
|
|
long len= -(stride*h);
|
2002-03-27 21:25:22 +00:00
|
|
|
asm volatile(
|
2006-08-12 16:37:31 +00:00
|
|
|
ASMALIGN(4)
|
2005-12-22 01:10:11 +00:00
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm0 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm1 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm2 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm3 \n\t"
|
|
|
|
"paddw %%mm0, %%mm1 \n\t"
|
|
|
|
"paddw %%mm2, %%mm3 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm4 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"paddw %%mm5, %%mm1 \n\t"
|
|
|
|
"paddw %%mm5, %%mm3 \n\t"
|
|
|
|
"psrlw $1, %%mm1 \n\t"
|
|
|
|
"psrlw $1, %%mm3 \n\t"
|
|
|
|
"packuswb %%mm3, %%mm1 \n\t"
|
|
|
|
"psubusb %%mm1, %%mm4 \n\t"
|
|
|
|
"psubusb %%mm2, %%mm1 \n\t"
|
|
|
|
"por %%mm4, %%mm1 \n\t"
|
|
|
|
"movq %%mm1, %%mm0 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm0 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm1 \n\t"
|
|
|
|
"paddw %%mm1, %%mm0 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"add %4, %%"REG_a" \n\t"
|
|
|
|
" js 1b \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "+a" (len)
|
2004-10-11 02:19:29 +00:00
|
|
|
: "r" (blk1a - len), "r" (blk1b -len), "r" (blk2 - len), "r" ((long)stride)
|
2002-03-27 21:25:22 +00:00
|
|
|
);
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static inline void sad8_4_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h)
|
2001-08-15 22:25:32 +00:00
|
|
|
{
|
2004-10-11 02:19:29 +00:00
|
|
|
long len= -(stride*h);
|
2002-03-27 21:25:22 +00:00
|
|
|
asm volatile(
|
2006-08-12 16:37:31 +00:00
|
|
|
ASMALIGN(4)
|
2005-12-22 01:10:11 +00:00
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, %%mm4 \n\t"
|
|
|
|
"movq %%mm1, %%mm2 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm0 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm1 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm4 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm2 \n\t"
|
|
|
|
"paddw %%mm1, %%mm0 \n\t"
|
|
|
|
"paddw %%mm2, %%mm4 \n\t"
|
|
|
|
"movq 1(%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"movq 1(%2, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"movq %%mm2, %%mm1 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm2 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm1 \n\t"
|
|
|
|
"paddw %%mm0, %%mm2 \n\t"
|
|
|
|
"paddw %%mm4, %%mm1 \n\t"
|
|
|
|
"movq %%mm3, %%mm4 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm3 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm4 \n\t"
|
|
|
|
"paddw %%mm3, %%mm2 \n\t"
|
|
|
|
"paddw %%mm4, %%mm1 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm3 \n\t"
|
|
|
|
"movq (%3, %%"REG_a"), %%mm4 \n\t"
|
|
|
|
"paddw %%mm5, %%mm2 \n\t"
|
|
|
|
"paddw %%mm5, %%mm1 \n\t"
|
|
|
|
"psrlw $2, %%mm2 \n\t"
|
|
|
|
"psrlw $2, %%mm1 \n\t"
|
|
|
|
"packuswb %%mm1, %%mm2 \n\t"
|
|
|
|
"psubusb %%mm2, %%mm3 \n\t"
|
|
|
|
"psubusb %%mm4, %%mm2 \n\t"
|
|
|
|
"por %%mm3, %%mm2 \n\t"
|
|
|
|
"movq %%mm2, %%mm0 \n\t"
|
|
|
|
"punpcklbw %%mm7, %%mm0 \n\t"
|
|
|
|
"punpckhbw %%mm7, %%mm2 \n\t"
|
|
|
|
"paddw %%mm2, %%mm0 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"add %4, %%"REG_a" \n\t"
|
|
|
|
" js 1b \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "+a" (len)
|
2004-10-11 02:19:29 +00:00
|
|
|
: "r" (blk1 - len), "r" (blk1 -len + stride), "r" (blk2 - len), "r" ((long)stride)
|
2002-03-27 21:25:22 +00:00
|
|
|
);
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2003-02-10 09:35:32 +00:00
|
|
|
static inline int sum_mmx(void)
|
2001-08-15 22:25:32 +00:00
|
|
|
{
|
2002-03-27 21:25:22 +00:00
|
|
|
int ret;
|
|
|
|
asm volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"movq %%mm6, %%mm0 \n\t"
|
|
|
|
"psrlq $32, %%mm6 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"movq %%mm6, %%mm0 \n\t"
|
|
|
|
"psrlq $16, %%mm6 \n\t"
|
|
|
|
"paddw %%mm0, %%mm6 \n\t"
|
|
|
|
"movd %%mm6, %0 \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "=r" (ret)
|
|
|
|
);
|
|
|
|
return ret&0xFFFF;
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2003-02-10 09:35:32 +00:00
|
|
|
static inline int sum_mmx2(void)
|
2001-08-15 22:25:32 +00:00
|
|
|
{
|
2002-03-27 21:25:22 +00:00
|
|
|
int ret;
|
|
|
|
asm volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"movd %%mm6, %0 \n\t"
|
2002-03-27 21:25:22 +00:00
|
|
|
: "=r" (ret)
|
|
|
|
);
|
|
|
|
return ret;
|
2001-08-15 22:25:32 +00:00
|
|
|
}
|
|
|
|
|
2002-12-03 11:07:41 +00:00
|
|
|
|
2002-03-27 21:25:22 +00:00
|
|
|
#define PIX_SAD(suf)\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad8_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-03-27 21:25:22 +00:00
|
|
|
{\
|
2003-12-30 16:07:57 +00:00
|
|
|
assert(h==8);\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t":);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_1_ ## suf(blk1, blk2, stride, 8);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad8_x2_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-03-27 21:25:22 +00:00
|
|
|
{\
|
2003-12-30 16:07:57 +00:00
|
|
|
assert(h==8);\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t"\
|
|
|
|
"movq %0, %%mm5 \n\t"\
|
2002-03-27 21:25:22 +00:00
|
|
|
:: "m"(round_tab[1]) \
|
|
|
|
);\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_2_ ## suf(blk1, blk1+1, blk2, stride, 8);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad8_y2_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-03-27 21:25:22 +00:00
|
|
|
{\
|
2003-12-30 16:07:57 +00:00
|
|
|
assert(h==8);\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t"\
|
|
|
|
"movq %0, %%mm5 \n\t"\
|
2002-03-27 21:25:22 +00:00
|
|
|
:: "m"(round_tab[1]) \
|
|
|
|
);\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_2_ ## suf(blk1, blk1+stride, blk2, stride, 8);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad8_xy2_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-03-27 21:25:22 +00:00
|
|
|
{\
|
2003-12-30 16:07:57 +00:00
|
|
|
assert(h==8);\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t"\
|
|
|
|
"movq %0, %%mm5 \n\t"\
|
2002-03-27 21:25:22 +00:00
|
|
|
:: "m"(round_tab[2]) \
|
|
|
|
);\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_4_ ## suf(blk1, blk2, stride, 8);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad16_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-12-27 23:51:46 +00:00
|
|
|
{\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t":);\
|
2002-12-27 23:51:46 +00:00
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_1_ ## suf(blk1 , blk2 , stride, h);\
|
|
|
|
sad8_1_ ## suf(blk1+8, blk2+8, stride, h);\
|
2002-12-27 23:51:46 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad16_x2_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-03-27 21:25:22 +00:00
|
|
|
{\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t"\
|
|
|
|
"movq %0, %%mm5 \n\t"\
|
2002-03-27 21:25:22 +00:00
|
|
|
:: "m"(round_tab[1]) \
|
|
|
|
);\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_2_ ## suf(blk1 , blk1+1, blk2 , stride, h);\
|
|
|
|
sad8_2_ ## suf(blk1+8, blk1+9, blk2+8, stride, h);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad16_y2_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-03-27 21:25:22 +00:00
|
|
|
{\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t"\
|
|
|
|
"movq %0, %%mm5 \n\t"\
|
2002-03-27 21:25:22 +00:00
|
|
|
:: "m"(round_tab[1]) \
|
|
|
|
);\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_2_ ## suf(blk1 , blk1+stride, blk2 , stride, h);\
|
|
|
|
sad8_2_ ## suf(blk1+8, blk1+stride+8,blk2+8, stride, h);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
2003-12-30 16:07:57 +00:00
|
|
|
static int sad16_xy2_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h)\
|
2002-03-27 21:25:22 +00:00
|
|
|
{\
|
2005-12-22 01:10:11 +00:00
|
|
|
asm volatile("pxor %%mm7, %%mm7 \n\t"\
|
|
|
|
"pxor %%mm6, %%mm6 \n\t"\
|
|
|
|
"movq %0, %%mm5 \n\t"\
|
2002-03-27 21:25:22 +00:00
|
|
|
:: "m"(round_tab[2]) \
|
|
|
|
);\
|
|
|
|
\
|
2003-12-30 16:07:57 +00:00
|
|
|
sad8_4_ ## suf(blk1 , blk2 , stride, h);\
|
|
|
|
sad8_4_ ## suf(blk1+8, blk2+8, stride, h);\
|
2002-03-27 21:25:22 +00:00
|
|
|
\
|
|
|
|
return sum_ ## suf();\
|
|
|
|
}\
|
2001-08-15 22:25:32 +00:00
|
|
|
|
2002-03-27 21:25:22 +00:00
|
|
|
PIX_SAD(mmx)
|
|
|
|
PIX_SAD(mmx2)
|
2003-02-10 09:35:32 +00:00
|
|
|
|
2003-03-03 14:54:00 +00:00
|
|
|
void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx)
|
2003-02-10 09:35:32 +00:00
|
|
|
{
|
|
|
|
if (mm_flags & MM_MMX) {
|
2003-12-30 16:07:57 +00:00
|
|
|
c->pix_abs[0][0] = sad16_mmx;
|
|
|
|
c->pix_abs[0][1] = sad16_x2_mmx;
|
|
|
|
c->pix_abs[0][2] = sad16_y2_mmx;
|
|
|
|
c->pix_abs[0][3] = sad16_xy2_mmx;
|
|
|
|
c->pix_abs[1][0] = sad8_mmx;
|
|
|
|
c->pix_abs[1][1] = sad8_x2_mmx;
|
|
|
|
c->pix_abs[1][2] = sad8_y2_mmx;
|
|
|
|
c->pix_abs[1][3] = sad8_xy2_mmx;
|
2003-02-10 09:35:32 +00:00
|
|
|
|
2005-12-22 01:10:11 +00:00
|
|
|
c->sad[0]= sad16_mmx;
|
2003-12-30 16:07:57 +00:00
|
|
|
c->sad[1]= sad8_mmx;
|
2003-02-10 09:35:32 +00:00
|
|
|
}
|
|
|
|
if (mm_flags & MM_MMXEXT) {
|
2005-12-22 01:10:11 +00:00
|
|
|
c->pix_abs[0][0] = sad16_mmx2;
|
|
|
|
c->pix_abs[1][0] = sad8_mmx2;
|
2003-02-10 09:35:32 +00:00
|
|
|
|
2005-12-22 01:10:11 +00:00
|
|
|
c->sad[0]= sad16_mmx2;
|
|
|
|
c->sad[1]= sad8_mmx2;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-03-03 14:54:00 +00:00
|
|
|
if(!(avctx->flags & CODEC_FLAG_BITEXACT)){
|
2003-12-30 16:07:57 +00:00
|
|
|
c->pix_abs[0][1] = sad16_x2_mmx2;
|
|
|
|
c->pix_abs[0][2] = sad16_y2_mmx2;
|
|
|
|
c->pix_abs[0][3] = sad16_xy2_mmx2;
|
|
|
|
c->pix_abs[1][1] = sad8_x2_mmx2;
|
|
|
|
c->pix_abs[1][2] = sad8_y2_mmx2;
|
|
|
|
c->pix_abs[1][3] = sad8_xy2_mmx2;
|
2003-03-03 14:54:00 +00:00
|
|
|
}
|
2003-02-10 09:35:32 +00:00
|
|
|
}
|
|
|
|
}
|