ff_x264.c
来自「从FFMPEG转换而来的H264解码程序,VC下编译..」· C语言 代码 · 共 18 行
C
18 行
#include <string.h>
#include <stdarg.h>
#ifdef HAVE_STDINT
# include <stdint.h>
#else
# include "inttypes.h"
#endif
#include "x264.h"
#include "common/common.h"
#include "encoder/ratecontrol.h"
#include "../../compiler.h"
void __stdcall getVersion(char *ver,const char* *license)
{
strcpy(ver, X264_BUILD", build date "__DATE__" "__TIME__" ("COMPILER COMPILER_X64")");
*license="";
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?