⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dsputil_mmx_rnd.h

📁 这是著名的TCPMP播放器在WINDWOWS,和WINCE下编译通过的源程序.笔者对其中的LIBMAD库做了针对ARM MPU的优化. 并增加了词幕功能.
💻 H
📖 第 1 页 / 共 2 页
字号:
/*
 * DSP utils mmx functions are compiled twice for rnd/no_rnd
 * Copyright (c) 2000, 2001 Fabrice Bellard.
 * Copyright (c) 2003-2004 Michael Niedermayer <michaelni@gmx.at>
 *
 * 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.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * MMX optimization by Nick Kurshev <nickols_k@mail.ru>
 * mostly rewritten by Michael Niedermayer <michaelni@gmx.at>
 * and improved by Zdenek Kabelac <kabi@users.sf.net>
 */

// put_pixels
static void DEF(put, pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
{
    MOVQ_BFE(mm6);
    __asm __volatile(
	"lea	(%3, %3), %%"REG_a"	\n\t"
	".balign 8			\n\t"
	"1:				\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	1(%1), %%mm1		\n\t"
	"movq	(%1, %3), %%mm2		\n\t"
	"movq	1(%1, %3), %%mm3	\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%2)		\n\t"
	"movq	%%mm5, (%2, %3)		\n\t"
	"add	%%"REG_a", %1		\n\t"
	"add	%%"REG_a", %2		\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	1(%1), %%mm1		\n\t"
	"movq	(%1, %3), %%mm2		\n\t"
	"movq	1(%1, %3), %%mm3	\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%2)		\n\t"
	"movq	%%mm5, (%2, %3)		\n\t"
	"add	%%"REG_a", %1		\n\t"
	"add	%%"REG_a", %2		\n\t"
	"subl	$4, %0			\n\t"
	"jnz	1b			\n\t"
	:"+g"(h), "+S"(pixels), "+D"(block)
	:"r"((long)line_size)
	:REG_a, "memory");
}

static void attribute_unused DEF(put, pixels8_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
{
    MOVQ_BFE(mm6);
    __asm __volatile(
	"testl $1, %0			\n\t"
        " jz 1f				\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	(%2), %%mm1		\n\t"
	"add	%4, %1			\n\t"
	"add	$8, %2			\n\t"
	PAVGB(%%mm0, %%mm1, %%mm4, %%mm6)
	"movq	%%mm4, (%3)		\n\t"
	"add	%5, %3			\n\t"
        "decl	%0			\n\t"
	".balign 8			\n\t"
	"1:				\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	(%2), %%mm1		\n\t"
	"add	%4, %1			\n\t"
	"movq	(%1), %%mm2		\n\t"
	"movq	8(%2), %%mm3		\n\t"
	"add	%4, %1			\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%3)		\n\t"
	"add	%5, %3			\n\t"
	"movq	%%mm5, (%3)		\n\t"
	"add	%5, %3			\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	16(%2), %%mm1		\n\t"
	"add	%4, %1			\n\t"
	"movq	(%1), %%mm2		\n\t"
	"movq	24(%2), %%mm3		\n\t"
	"add	%4, %1			\n\t"
	"add	$32, %2			\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%3)		\n\t"
	"add	%5, %3			\n\t"
	"movq	%%mm5, (%3)		\n\t"
	"add	%5, %3			\n\t"
	"subl	$4, %0			\n\t"
	"jnz	1b			\n\t"
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cant be used
        :"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
#else
        :"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
#endif
	:"S"((long)src1Stride), "D"((long)dstStride)
	:"memory");
}

static void DEF(put, pixels16_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
{
    MOVQ_BFE(mm6);
    __asm __volatile(
	"lea	(%3, %3), %%"REG_a"	\n\t"
	".balign 8			\n\t"
	"1:				\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	1(%1), %%mm1		\n\t"
	"movq	(%1, %3), %%mm2		\n\t"
	"movq	1(%1, %3), %%mm3	\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%2)		\n\t"
	"movq	%%mm5, (%2, %3)		\n\t"
	"movq	8(%1), %%mm0		\n\t"
	"movq	9(%1), %%mm1		\n\t"
	"movq	8(%1, %3), %%mm2	\n\t"
	"movq	9(%1, %3), %%mm3	\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, 8(%2)		\n\t"
	"movq	%%mm5, 8(%2, %3)	\n\t"
	"add	%%"REG_a", %1		\n\t"
	"add	%%"REG_a", %2		\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	1(%1), %%mm1		\n\t"
	"movq	(%1, %3), %%mm2		\n\t"
	"movq	1(%1, %3), %%mm3	\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%2)		\n\t"
	"movq	%%mm5, (%2, %3)		\n\t"
	"movq	8(%1), %%mm0		\n\t"
	"movq	9(%1), %%mm1		\n\t"
	"movq	8(%1, %3), %%mm2	\n\t"
	"movq	9(%1, %3), %%mm3	\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, 8(%2)		\n\t"
	"movq	%%mm5, 8(%2, %3)	\n\t"
	"add	%%"REG_a", %1		\n\t"
	"add	%%"REG_a", %2		\n\t"
	"subl	$4, %0			\n\t"
	"jnz	1b			\n\t"
	:"+g"(h), "+S"(pixels), "+D"(block)
	:"r"((long)line_size)
	:REG_a, "memory");
}

static void attribute_unused DEF(put, pixels16_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
{
    MOVQ_BFE(mm6);
    __asm __volatile(
	"testl $1, %0			\n\t"
        " jz 1f				\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	(%2), %%mm1		\n\t"
	"movq	8(%1), %%mm2		\n\t"
	"movq	8(%2), %%mm3		\n\t"
	"add	%4, %1			\n\t"
	"add	$16, %2			\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%3)		\n\t"
	"movq	%%mm5, 8(%3)		\n\t"
	"add	%5, %3			\n\t"
	"decl	%0			\n\t"
	".balign 8			\n\t"
	"1:				\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	(%2), %%mm1		\n\t"
	"movq	8(%1), %%mm2		\n\t"
	"movq	8(%2), %%mm3		\n\t"
	"add	%4, %1			\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%3)		\n\t"
	"movq	%%mm5, 8(%3)		\n\t"
	"add	%5, %3			\n\t"
	"movq	(%1), %%mm0		\n\t"
	"movq	16(%2), %%mm1		\n\t"
	"movq	8(%1), %%mm2		\n\t"
	"movq	24(%2), %%mm3		\n\t"
	"add	%4, %1			\n\t"
	PAVGBP(%%mm0, %%mm1, %%mm4,   %%mm2, %%mm3, %%mm5)
	"movq	%%mm4, (%3)		\n\t"
	"movq	%%mm5, 8(%3)		\n\t"
	"add	%5, %3			\n\t"
	"add	$32, %2			\n\t"
	"subl	$2, %0			\n\t"
	"jnz	1b			\n\t"
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cant be used
	:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
#else
	:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
#endif
	:"S"((long)src1Stride), "D"((long)dstStride)
	:"memory"); 
}

static void DEF(put, pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
{
    MOVQ_BFE(mm6);
    __asm __volatile(
	"lea (%3, %3), %%"REG_a"	\n\t"
	"movq (%1), %%mm0		\n\t"
	".balign 8			\n\t"
	"1:				\n\t"
	"movq	(%1, %3), %%mm1		\n\t"
	"movq	(%1, %%"REG_a"),%%mm2	\n\t"
	PAVGBP(%%mm1, %%mm0, %%mm4,   %%mm2, %%mm1, %%mm5)
	"movq	%%mm4, (%2)		\n\t"
	"movq	%%mm5, (%2, %3)		\n\t"
	"add	%%"REG_a", %1		\n\t"
	"add	%%"REG_a", %2		\n\t"
	"movq	(%1, %3), %%mm1		\n\t"
	"movq	(%1, %%"REG_a"),%%mm0	\n\t"
	PAVGBP(%%mm1, %%mm2, %%mm4,   %%mm0, %%mm1, %%mm5)
	"movq	%%mm4, (%2)		\n\t"
	"movq	%%mm5, (%2, %3)		\n\t"
	"add	%%"REG_a", %1		\n\t"
	"add	%%"REG_a", %2		\n\t"
	"subl	$4, %0			\n\t"
	"jnz	1b			\n\t"
	:"+g"(h), "+S"(pixels), "+D"(block)
	:"r"((long)line_size)
	:REG_a, "memory");
}

static void DEF(put, pixels8_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
{
    MOVQ_ZERO(mm7);
    SET_RND(mm6); // =2 for rnd  and  =1 for no_rnd version
    __asm __volatile(
	"movq	(%1), %%mm0		\n\t"
	"movq	1(%1), %%mm4		\n\t"
	"movq	%%mm0, %%mm1		\n\t"
	"movq	%%mm4, %%mm5		\n\t"
	"punpcklbw %%mm7, %%mm0		\n\t"
	"punpcklbw %%mm7, %%mm4		\n\t"
	"punpckhbw %%mm7, %%mm1		\n\t"
	"punpckhbw %%mm7, %%mm5		\n\t"
	"paddusw %%mm0, %%mm4		\n\t"
	"paddusw %%mm1, %%mm5		\n\t"
	"xor	%%"REG_a", %%"REG_a"	\n\t"
	"add	%3, %1			\n\t"
	".balign 8      		\n\t"
	"1:				\n\t"
	"movq	(%1, %%"REG_a"), %%mm0	\n\t"
	"movq	1(%1, %%"REG_a"), %%mm2	\n\t"
	"movq	%%mm0, %%mm1		\n\t"
	"movq	%%mm2, %%mm3		\n\t"
	"punpcklbw %%mm7, %%mm0		\n\t"
	"punpcklbw %%mm7, %%mm2		\n\t"
	"punpckhbw %%mm7, %%mm1		\n\t"
	"punpckhbw %%mm7, %%mm3		\n\t"
	"paddusw %%mm2, %%mm0	 	\n\t"
	"paddusw %%mm3, %%mm1		\n\t"
	"paddusw %%mm6, %%mm4		\n\t"
	"paddusw %%mm6, %%mm5		\n\t"
	"paddusw %%mm0, %%mm4		\n\t"
	"paddusw %%mm1, %%mm5		\n\t"
	"psrlw	$2, %%mm4		\n\t"
	"psrlw	$2, %%mm5		\n\t"
	"packuswb  %%mm5, %%mm4		\n\t"
	"movq	%%mm4, (%2, %%"REG_a")	\n\t"
	"add	%3, %%"REG_a"		\n\t"

	"movq	(%1, %%"REG_a"), %%mm2	\n\t" // 0 <-> 2   1 <-> 3
	"movq	1(%1, %%"REG_a"), %%mm4	\n\t"
	"movq	%%mm2, %%mm3		\n\t"
	"movq	%%mm4, %%mm5		\n\t"
	"punpcklbw %%mm7, %%mm2		\n\t"
	"punpcklbw %%mm7, %%mm4		\n\t"
	"punpckhbw %%mm7, %%mm3		\n\t"
	"punpckhbw %%mm7, %%mm5		\n\t"
	"paddusw %%mm2, %%mm4	 	\n\t"
	"paddusw %%mm3, %%mm5		\n\t"
	"paddusw %%mm6, %%mm0		\n\t"
	"paddusw %%mm6, %%mm1		\n\t"
	"paddusw %%mm4, %%mm0		\n\t"
	"paddusw %%mm5, %%mm1		\n\t"
	"psrlw	$2, %%mm0		\n\t"
	"psrlw	$2, %%mm1		\n\t"
	"packuswb  %%mm1, %%mm0		\n\t"
	"movq	%%mm0, (%2, %%"REG_a")	\n\t"
	"add	%3, %%"REG_a"		\n\t"

	"subl	$2, %0			\n\t"
	"jnz	1b			\n\t"
	:"+g"(h), "+S"(pixels)
	:"D"(block), "r"((long)line_size)
	:REG_a, "memory");
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -