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

📄 mblock_sub44_sads_x86.c

📁 Motion JPEG编解码器源代码
💻 C
字号:
/* * * mblock_sub44_sads.c * Copyright (C) 2000 Andrew Stevens <as@comlab.ox.ac.uk> * * Fast block sum-absolute difference computation for a rectangular area 4*x * by y where y > h against a 4 by h block. * * Used for 4*4 sub-sampled motion compensation calculations. * * This is actually just a shell that uses templates from the included * file "mblock_sub44_sads_x86_h.c".  I didn't trust the compiler to do a good * job on nested inlining.  One day I'll experiment. *  * * This file is part of mpeg2enc, a free MPEG-2 video stream encoder * based on the original MSSG reference design * * mpeg2enc is free software; you can redistribute new parts * and/or modify under the terms of the GNU General Public License  * as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * mpeg2dec 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 General Public License for more details. * * See the files for those sections (c) MSSG * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#include <config.h>#include "mjpeg_types.h"#include "attributes.h"#include "mmx.h"#include "fastintfns.h"#include "motionsearch.h"#include "mblock_sub44_sads_x86.h"/* * Load a 8*4 block of 4*4 sub-sampled pels (qpels) into the MMX * registers * */static inline void load_blk(uint8_t *blk,uint32_t rowstride,int h){	movq_m2r( *blk, mm0);	movq_m2r( *(blk+rowstride), mm1);	blk += 2*rowstride;	if( h == 2 )		return;	movq_m2r( *blk, mm2);	movq_m2r( *(blk+rowstride), mm3);}/* * Do a shift right on the 4*4 block in the MMX registers * We do this as a macro as otherwise we get warnings from the * pre-optimised asm generated.  */#define shift_blk(shift)\	psrlq_i2r( shift,mm0);\	psrlq_i2r( shift,mm1);\	psrlq_i2r( shift,mm2);\	psrlq_i2r( shift,mm3);/* * Compute the Sum absolute differences between the 4*h block in * the MMX registers (4 least sig. bytes in mm0..mm3) * * and the 4*h block pointed to by refblk * * h == 2 || h == 4 * * TODO: Currently always loads and shifts 4*4 even if 4*2 is required. * */static inline void init_qblock_sad_mmxe(uint8_t *refblk,uint32_t h,uint32_t rowstride){    /* load refblk into mm6 and mm7 */    movd_m2r(refblk[0],mm6);    movd_m2r(refblk[rowstride],mm4);    punpcklbw_r2r(mm4,mm6);    if( h == 4 ) {        refblk+=rowstride*2;        movd_m2r(refblk[0],mm7);        movd_m2r(refblk[rowstride],mm5);        punpcklbw_r2r(mm5,mm7);    } else {        pxor_r2r(mm7,mm7);        pxor_r2r(mm2,mm2);        pxor_r2r(mm3,mm3);    }}static inline int qblock_sad_mmxe(uint8_t *refblk, 								  uint32_t h,								  uint32_t rowstride){	int res;        /* On input,           mm0 = first row           mm1 = second row           mm2 = third row           mm3 = fourth row           mm6 = refblk for first and second roww packed together (ala init_qblock_sad_mmxe)           mm7 = refblk for third and fourth rows packed together (ala init_qblock_sad_mmxe)        */        /* Do the first two rows together, by packing the two rows of 4 bytes           into one eight byte register; then perform only one SAD for both           rows at once. */        movq_r2r     (mm0,mm4);        punpcklbw_r2r(mm1,mm4);        psadbw_r2r   (mm6,mm4);        movq_r2r     (mm2,mm5);        punpcklbw_r2r(mm3,mm5);        psadbw_r2r   (mm7,mm5);        paddw_r2r    (mm5,mm4);	movd_r2g      ( mm4, res );	return res;}/*  Register usage:  mm0-mm3  Hold the current row   mm4      Used for accumulating partial SAD */static inline void init_qblock_sad_mmx(uint8_t *refblk,uint32_t h,uint32_t rowstride){}static inline int qblock_sad_mmx(uint8_t *refblk, uint32_t h, uint32_t rowstride){	int res;	pxor_r2r 	(mm4,mm4);				movq_r2r	(mm0,mm5);		/* First row */	movd_m2r	(*refblk, mm6);	pxor_r2r    ( mm7, mm7);	refblk += rowstride;	punpcklbw_r2r	( mm7, mm5);	punpcklbw_r2r	( mm7, mm6);	movq_r2r		( mm5, mm7);	psubusw_r2r	( mm6, mm5);	psubusw_r2r   ( mm7, mm6);	paddw_r2r     ( mm5, mm4);	paddw_r2r     ( mm6, mm4 );		movq_r2r	(mm1,mm5);		/* Second row */	movd_m2r	(*refblk, mm6);	pxor_r2r    ( mm7, mm7);	refblk += rowstride;	punpcklbw_r2r	( mm7, mm5);	punpcklbw_r2r	( mm7, mm6);	movq_r2r		( mm5, mm7);	psubusw_r2r	( mm6, mm5);	psubusw_r2r   ( mm7, mm6);	paddw_r2r     ( mm5, mm4);	paddw_r2r     ( mm6, mm4 );	if( h == 4 )	{		movq_r2r	(mm2,mm5);		/* Third row */		movd_m2r	(*refblk, mm6);		pxor_r2r    ( mm7, mm7);		refblk += rowstride;		punpcklbw_r2r	( mm7, mm5);		punpcklbw_r2r	( mm7, mm6);		movq_r2r		( mm5, mm7);		psubusw_r2r	( mm6, mm5);		psubusw_r2r   ( mm7, mm6);		paddw_r2r     ( mm5, mm4);		paddw_r2r     ( mm6, mm4 );				movq_r2r	(mm3,mm5);		/* Fourth row */		movd_m2r	(*refblk, mm6);		pxor_r2r    ( mm7, mm7);		punpcklbw_r2r	( mm7, mm5);		punpcklbw_r2r	( mm7, mm6);		movq_r2r		( mm5, mm7);		psubusw_r2r	( mm6, mm5);		psubusw_r2r   ( mm7, mm6);		paddw_r2r     ( mm5, mm4);		paddw_r2r     ( mm6, mm4 );	}	movq_r2r      ( mm4, mm5 );    psrlq_i2r     ( 32, mm5 );    paddw_r2r     ( mm5, mm4 );	movq_r2r      ( mm4, mm6 );    psrlq_i2r     ( 16, mm6 );    paddw_r2r     ( mm6, mm4 );	movd_r2g      ( mm4, res );	return res & 0xffff;}/* * Do the Extended MMX versions */#define SIMD_SUFFIX(x) x##_mmxe#include "mblock_sub44_sads_x86_h.c"#undef SIMD_SUFFIX/* * Do the original MMX versions */#define SIMD_SUFFIX(x) x##_mmx#include "mblock_sub44_sads_x86_h.c"#undef SIMD_SUFFIX

⌨️ 快捷键说明

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