当前位置: 技术问答>linux和unix
关于av_open_input_file函数的使用
来源: 互联网 发布时间:2017-05-07
本文导语: AVFormatContext *pFormatCtx; const char *filename = "./a.mp4"; if(av_open_input_file(&pFormatCtx, filename, NULL, 0, NULL) != 0) { printf("open video file fail!n"); } 打不开文件,报Segmentation fault,我的...
AVFormatContext *pFormatCtx;
const char *filename = "./a.mp4";
if(av_open_input_file(&pFormatCtx, filename, NULL, 0, NULL) != 0)
{
printf("open video file fail!n");
}
打不开文件,报Segmentation fault,我的文件是放在当前目录下的。
const char *filename = "./a.mp4";
if(av_open_input_file(&pFormatCtx, filename, NULL, 0, NULL) != 0)
{
printf("open video file fail!n");
}
打不开文件,报Segmentation fault,我的文件是放在当前目录下的。
|
1、如果是流的话应该是一段地址才对啊 而且av_open_input_file()可以打开流的吧
2、最新的api好像是avformat_open_input()
2、最新的api好像是avformat_open_input()
|
少了一句申请内存,野指针当然要崩溃了
pFormatCtx = avformat_alloc_context();
pFormatCtx = avformat_alloc_context();
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。