建立一个工程,将头文件,库文件加载到工程,测试代码如下:
#include <iostream>
#include <string>
#include "stdint.h"  //如果没有,下载地址为:http://download.csdn.net/detail/evsqiezi/7014021
extern "C"
{
#include "x264.h"
#include "x264_config.h"
};
using namespace std;
int main()
{
x264_param_t param;
x264_param_default(&param);
return 0;
}

相关文章:

  • 2021-05-23
  • 2022-12-23
  • 2021-10-30
  • 2021-10-01
  • 2021-05-23
  • 2021-10-18
  • 2021-05-26
猜你喜欢
  • 2022-12-23
  • 2022-03-03
  • 2022-02-18
  • 2021-05-14
  • 2021-07-12
  • 2022-01-11
  • 2021-08-21
相关资源
相似解决方案