mp4.c.svn-base

来自「psp播放器PPA源码,在MSYS/CYGWIN环境下编译(GNU-C)」· SVN-BASE 代码 · 共 22 行

SVN-BASE
22
字号
#include "mp4.h"char *mp4_play(struct movie_file_struct *movie, int usePos, int pspType, int tvAspectRatio, int tvOverScanLeft, int tvOverScanTop, int tvOverScanRight, int tvOverScanBottom, int videoMode) {	struct mp4_play_struct p;	pmp_gu_start(pspType, tvAspectRatio, tvOverScanLeft, tvOverScanTop, tvOverScanRight, tvOverScanBottom, videoMode);	char *result = mp4_play_open(&p, movie, usePos, pspType, tvAspectRatio, (720-tvOverScanLeft-tvOverScanRight), (480-tvOverScanTop-tvOverScanBottom), videoMode);	if (result == 0) {		result = mp4_play_start(&p);		mp4_play_close(&p, usePos, pspType);	}	pmp_gu_end();	return(result);}

⌨️ 快捷键说明

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