解决VS2010下av_register_all程序中断退出的问题

起因是这样的,本来想在我的VS2010上利用ffmpeg写点东西,但是代码才写了一行,编译通过但是运行之后就报如下问题,程序自动退出了。代码和现象如下:

#include 
#include 

using namespace std;

 

extern "C"
{
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libswscale/swscale.h"
  
};
 

int main(int argc, char* argv[])
{
	av_register_all();
	char szfilePath[100] = {"F:\\test\\ts.ts"};

	system("pause");
	return 0;
}

解决VS2010下av_register_all程序中断退出的问题_第1张图片

这个其实很不应该,毕竟什么都没有做,然后程序就这样退出。

最终解决如下:

在项目属性->连接器->优化->引用 原来的选项是:是 (/OPT:REF) 改成:否 (/OPT:NOREF)。然后就可以正常运行了。

解释如下(不知道是否准确):

解决VS2010下av_register_all程序中断退出的问题_第2张图片

 

 

你可能感兴趣的:(ffmpeg,ffmpeg)