avformat_open_input(); 返回-5

   日期:2020-10-11     浏览:173    评论:0    
核心提示:先初始化 输入封装格式上下文ps 和 输入格式 fmt,然后打开文件。返回值为 -5。ps = avformat_alloc_context();fmt =av_find_input_format("dshow");int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);====================解决办法=..

先初始化 输入封装格式上下文ps 和 输入格式 fmt,然后打开文件。返回值为 -5。

ps = avformat_alloc_context();

fmt = av_find_input_format("dshow");

int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);
 

====================解决办法=========================================================

查找了一番原因,是因为我的 filename输入有一点错误。这个文件路径,一定要仔细核对,不能有一丁点的错误。

尤其是打开麦克风,出现中文的时候,一定要进行宽字符转换。

char *psDevName = dup_wchar_to_utf8(L"audio=麦克风阵列 (Conexant SmartAudio HD)");

 

// 用于将中文字符串,转化为UTF8
static char *dup_wchar_to_utf8(wchar_t *w)
{
    char *s = NULL;
    int l = WideCharToMultiByte(CP_UTF8, 0, w, -1, 0, 0, 0, 0);
    s = (char *)av_malloc(l);
    if (s)
        WideCharToMultiByte(CP_UTF8, 0, w, -1, s, l, 0, 0);
    return s;
}

 

以上程序是在VS2010 MFC上写的。其他平台可能不适用哦。

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服