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

📄 xvid.c

📁 mpeg4 video codec mpeg4 video codec
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * *  XVID MPEG-4 VIDEO CODEC *  - Native API implementation  - * *  Copyright(C) 2001-2004 Peter Ross <pross@xvid.org> * *  This program is free software ; you can redistribute it and/or modify *  it 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. * *  This program 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. * *  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 * * $Id: xvid.c,v 1.1 2006/02/23 15:13:27 kevin-fu Exp $ * ****************************************************************************/#include <stdio.h>#include <stdlib.h>#include <string.h>#include <time.h>#include "xvid.h"#include "decoder.h"#include "encoder.h"#include "bitstream/cbp.h"#include "dct/idct.h"#include "dct/fdct.h"#include "image/colorspace.h"#include "image/interpolate8x8.h"#include "utils/mem_transfer.h"#include "utils/mbfunctions.h"#include "quant/quant.h"#include "motion/motion.h"#include "motion/sad.h"#include "utils/emms.h"#include "utils/timer.h"#include "bitstream/mbcoding.h"#include "image/qpel.h"#include "image/postprocessing.h"#if defined(_DEBUG)unsigned int xvid_debug = 0; /* xvid debug mask */#endif#if (defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)) && defined(_MSC_VER)#	include <windows.h>#elif defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64) || defined(ARCH_IS_PPC)#	include <signal.h>#	include <setjmp.h>	static jmp_buf mark;	static void	sigill_handler(int signal)	{	   longjmp(mark, 1);	}#endif/* * Calls the funcptr, and returns whether SIGILL (illegal instruction) was * signalled * * Return values: *  -1 : could not determine *   0 : SIGILL was *not* signalled *   1 : SIGILL was signalled */#if (defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)) && defined(_MSC_VER)static intsigill_check(void (*func)()){	_try {		func();	} _except(EXCEPTION_EXECUTE_HANDLER) {		if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION)			return(1);	}	return(0);}#elif defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64) || defined(ARCH_IS_PPC)static intsigill_check(void (*func)()){    void *old_handler;    int jmpret;    /* Set our SIGILL handler */    old_handler = signal(SIGILL, sigill_handler);    /* Check for error */    if (old_handler == SIG_ERR) {        return(-1);    }    /* Save stack context, so if func triggers a SIGILL, we can still roll	 * back to a valid CPU state */	jmpret = setjmp(mark);	/* If setjmp returned directly, then its returned value is 0, and we still	 * have to test the passed func. Otherwise it means the stack context has	 * been restored by a longjmp() call, which in our case happens only in the	 * signal handler */    if (jmpret == 0) {        func();    }    /* Restore old signal handler */    signal(SIGILL, old_handler);    return(jmpret);}#endif/* detect cpu flags  */static unsigned intdetect_cpu_flags(void){	/* enable native assembly optimizations by default */	unsigned int cpu_flags = XVID_CPU_ASM;#if defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)	cpu_flags |= check_cpu_features();	if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))		cpu_flags &= ~XVID_CPU_SSE;	if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))		cpu_flags &= ~XVID_CPU_SSE2;#endif#if defined(ARCH_IS_PPC)	if (!sigill_check(altivec_trigger))		cpu_flags |= XVID_CPU_ALTIVEC;#endif	return cpu_flags;}/***************************************************************************** * XviD Init Entry point * * Well this function initialize all internal function pointers according * to the CPU features forced by the library client or autodetected (depending * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all * image colorspace transformation tables. * * Returned value : XVID_ERR_OK *                  + API_VERSION in the input XVID_INIT_PARAM structure *                  + core build  "   "    "       "               " * ****************************************************************************/staticint xvid_gbl_init(xvid_gbl_init_t * init){	unsigned int cpu_flags;	if (XVID_VERSION_MAJOR(init->version) != 1) /* v1.x.x */		return XVID_ERR_VERSION;	cpu_flags = (init->cpu_flags & XVID_CPU_FORCE) ? init->cpu_flags : detect_cpu_flags();	/* Initialize the function pointers */	idct_int32_init();	init_vlc_tables();	/* Fixed Point Forward/Inverse DCT transformations */	fdct = fdct_int32;	idct = idct_int32;	/* Only needed on PPC Altivec archs */	sadInit = NULL;	/* Restore FPU context : emms_c is a nop functions */	emms = emms_c;	/* Qpel stuff */	xvid_QP_Funcs = &xvid_QP_Funcs_C;	xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_C;	xvid_Init_QP();	/* Quantization functions */	quant_h263_intra   = quant_h263_intra_c;	quant_h263_inter   = quant_h263_inter_c;	dequant_h263_intra = dequant_h263_intra_c;	dequant_h263_inter = dequant_h263_inter_c;	quant_mpeg_intra   = quant_mpeg_intra_c;	quant_mpeg_inter   = quant_mpeg_inter_c;	dequant_mpeg_intra = dequant_mpeg_intra_c;	dequant_mpeg_inter = dequant_mpeg_inter_c;	/* Block transfer related functions */	transfer_8to16copy = transfer_8to16copy_c;	transfer_16to8copy = transfer_16to8copy_c;	transfer_8to16sub  = transfer_8to16sub_c;	transfer_8to16subro  = transfer_8to16subro_c;	transfer_8to16sub2 = transfer_8to16sub2_c;	transfer_8to16sub2ro = transfer_8to16sub2ro_c;	transfer_16to8add  = transfer_16to8add_c;	transfer8x8_copy   = transfer8x8_copy_c;	transfer8x4_copy   = transfer8x4_copy_c;	/* Interlacing functions */	MBFieldTest = MBFieldTest_c;	/* Image interpolation related functions */	interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_c;	interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;	interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;	interpolate8x4_halfpel_h  = interpolate8x4_halfpel_h_c;	interpolate8x4_halfpel_v  = interpolate8x4_halfpel_v_c;	interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_c;	interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_c;	interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_c;	interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_c;	interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_c;	interpolate16x16_lowpass_h = interpolate16x16_lowpass_h_c;	interpolate16x16_lowpass_v = interpolate16x16_lowpass_v_c;	interpolate16x16_lowpass_hv = interpolate16x16_lowpass_hv_c;	interpolate8x8_lowpass_h = interpolate8x8_lowpass_h_c;	interpolate8x8_lowpass_v = interpolate8x8_lowpass_v_c;	interpolate8x8_lowpass_hv = interpolate8x8_lowpass_hv_c;	interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_c;	interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_c;	interpolate8x8_avg2 = interpolate8x8_avg2_c;	interpolate8x8_avg4 = interpolate8x8_avg4_c;	/* postprocessing */	image_brightness = image_brightness_c;	/* Initialize internal colorspace transformation tables */	colorspace_init();	/* All colorspace transformation functions User Format->YV12 */	yv12_to_yv12    = yv12_to_yv12_c;	rgb555_to_yv12  = rgb555_to_yv12_c;	rgb565_to_yv12  = rgb565_to_yv12_c;	bgr_to_yv12     = bgr_to_yv12_c;	bgra_to_yv12    = bgra_to_yv12_c;	abgr_to_yv12    = abgr_to_yv12_c;	rgba_to_yv12    = rgba_to_yv12_c;	argb_to_yv12    = argb_to_yv12_c;	yuyv_to_yv12    = yuyv_to_yv12_c;	uyvy_to_yv12    = uyvy_to_yv12_c;	rgb555i_to_yv12 = rgb555i_to_yv12_c;	rgb565i_to_yv12 = rgb565i_to_yv12_c;	bgri_to_yv12    = bgri_to_yv12_c;	bgrai_to_yv12   = bgrai_to_yv12_c;	abgri_to_yv12   = abgri_to_yv12_c;	rgbai_to_yv12   = rgbai_to_yv12_c;	argbi_to_yv12   = argbi_to_yv12_c;	yuyvi_to_yv12   = yuyvi_to_yv12_c;	uyvyi_to_yv12   = uyvyi_to_yv12_c;	/* All colorspace transformation functions YV12->User format */	yv12_to_rgb555  = yv12_to_rgb555_c;	yv12_to_rgb565  = yv12_to_rgb565_c;	yv12_to_bgr     = yv12_to_bgr_c;	yv12_to_bgra    = yv12_to_bgra_c;	yv12_to_abgr    = yv12_to_abgr_c;	yv12_to_rgba    = yv12_to_rgba_c;	yv12_to_argb    = yv12_to_argb_c;	yv12_to_yuyv    = yv12_to_yuyv_c;	yv12_to_uyvy    = yv12_to_uyvy_c;	yv12_to_rgb555i = yv12_to_rgb555i_c;	yv12_to_rgb565i = yv12_to_rgb565i_c;	yv12_to_bgri    = yv12_to_bgri_c;	yv12_to_bgrai   = yv12_to_bgrai_c;	yv12_to_abgri   = yv12_to_abgri_c;	yv12_to_rgbai   = yv12_to_rgbai_c;	yv12_to_argbi   = yv12_to_argbi_c;	yv12_to_yuyvi   = yv12_to_yuyvi_c;	yv12_to_uyvyi   = yv12_to_uyvyi_c;	/* Functions used in motion estimation algorithms */	calc_cbp   = calc_cbp_c;	sad16      = sad16_c;	sad8       = sad8_c;	sad16bi    = sad16bi_c;	sad8bi     = sad8bi_c;	dev16      = dev16_c;	sad16v	   = sad16v_c;	sse8_16bit = sse8_16bit_c;	sse8_8bit  = sse8_8bit_c;#if defined(ARCH_IS_IA32)	if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||		(cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||		(cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2))	{		/* Restore FPU context : emms_c is a nop functions */		emms = emms_mmx;	}	if ((cpu_flags & XVID_CPU_MMX)) {		/* Forward and Inverse Discrete Cosine Transformation functions */		fdct = fdct_mmx_skal;		idct = idct_mmx;		/* Qpel stuff */		xvid_QP_Funcs = &xvid_QP_Funcs_mmx;		xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_mmx;		/* Quantization related functions */		quant_h263_intra   = quant_h263_intra_mmx;		quant_h263_inter   = quant_h263_inter_mmx;		dequant_h263_intra = dequant_h263_intra_mmx;		dequant_h263_inter = dequant_h263_inter_mmx;		quant_mpeg_intra   = quant_mpeg_intra_mmx;		quant_mpeg_inter   = quant_mpeg_inter_mmx;		dequant_mpeg_intra = dequant_mpeg_intra_mmx;		dequant_mpeg_inter = dequant_mpeg_inter_mmx;		/* Block related functions */		transfer_8to16copy = transfer_8to16copy_mmx;		transfer_16to8copy = transfer_16to8copy_mmx;		transfer_8to16sub  = transfer_8to16sub_mmx;		transfer_8to16subro  = transfer_8to16subro_mmx;		transfer_8to16sub2 = transfer_8to16sub2_mmx;		transfer_16to8add  = transfer_16to8add_mmx;		transfer8x8_copy   = transfer8x8_copy_mmx;		transfer8x4_copy   = transfer8x4_copy_mmx;		/* Interlacing Functions */		MBFieldTest = MBFieldTest_mmx;		/* Image Interpolation related functions */		interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;		interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;		interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;		interpolate8x4_halfpel_h  = interpolate8x4_halfpel_h_mmx;		interpolate8x4_halfpel_v  = interpolate8x4_halfpel_v_mmx;		interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_mmx;		interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_mmx;		interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_mmx;		interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_mmx;		interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_mmx;		interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;		interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;		interpolate8x8_avg2 = interpolate8x8_avg2_mmx;		interpolate8x8_avg4 = interpolate8x8_avg4_mmx;		/* postprocessing */		image_brightness = image_brightness_mmx;		/* image input xxx_to_yv12 related functions */		yv12_to_yv12  = yv12_to_yv12_mmx;		bgr_to_yv12   = bgr_to_yv12_mmx;		bgra_to_yv12  = bgra_to_yv12_mmx;		yuyv_to_yv12  = yuyv_to_yv12_mmx;		uyvy_to_yv12  = uyvy_to_yv12_mmx;		/* image output yv12_to_xxx related functions */		yv12_to_bgr   = yv12_to_bgr_mmx;		yv12_to_bgra  = yv12_to_bgra_mmx;		yv12_to_yuyv  = yv12_to_yuyv_mmx;		yv12_to_uyvy  = yv12_to_uyvy_mmx;		yv12_to_yuyvi = yv12_to_yuyvi_mmx;		yv12_to_uyvyi = yv12_to_uyvyi_mmx;		/* Motion estimation related functions */		calc_cbp   = calc_cbp_mmx;		sad16      = sad16_mmx;		sad8       = sad8_mmx;		sad16bi    = sad16bi_mmx;		sad8bi     = sad8bi_mmx;		dev16      = dev16_mmx;		sad16v	   = sad16v_mmx;		sse8_16bit = sse8_16bit_mmx;		sse8_8bit  = sse8_8bit_mmx;	}	/* these 3dnow functions are faster than mmx, but slower than xmm. */	if ((cpu_flags & XVID_CPU_3DNOW)) {		emms = emms_3dn;		/* ME functions */		sad16bi = sad16bi_3dn;		sad8bi  = sad8bi_3dn;		yuyv_to_yv12  = yuyv_to_yv12_3dn;		uyvy_to_yv12  = uyvy_to_yv12_3dn;	}	if ((cpu_flags & XVID_CPU_MMXEXT)) {		/* DCT */		fdct = fdct_xmm_skal;		idct = idct_xmm;		/* Interpolation */		interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_xmm;		interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;		interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;				interpolate8x4_halfpel_h  = interpolate8x4_halfpel_h_xmm;		interpolate8x4_halfpel_v  = interpolate8x4_halfpel_v_xmm;		interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_xmm;				interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_xmm;

⌨️ 快捷键说明

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