psnr_demo.c

来自「ZPAV (H265) PC(X86) demo ZPAV (H26」· C语言 代码 · 共 43 行

C
43
字号

/*
///////////////////////////////////////////////////////////////////////////////
//                                                                           //
//   Copyright (C) 2006-2008  Beijing,  pengzhen (pengzhenxp@yahoo.com.cn)   //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////
*/

#ifdef WIN32
#define _CRT_SECURE_NO_DEPRECATE 1 /* disable deprecation */
//#include <windows.h>
//#include <windowsx.h>
#endif /* WIN32 */


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

static char m_in_file_name0[256]  ;    
static char m_in_file_name1[256] ;

static int m_width = 352 ;
static int m_height = 288 ;

#include "psnr_argcv.c"

#include "psnr_process.c"

/**
* psnr main 
*/

#if defined(WIN32) || ( defined(__TCS__) && (TMFL_PNX_ID == 1300) ) /* WIN32 / PNX1300/TM1300 */
void main(int argc, char **argv)
{
	psnr_main( argc, argv ) ;
} 
#endif /* */ 

⌨️ 快捷键说明

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