avformat_open_input() always return -13
时间:2015-05-20 11:29:55
收藏:0
阅读:652
我在调用avformat_open_input的时候,一直返回-13错误,如下代码:
const char *url = "/mnt/sdcard/xpg.mp4";
av_register_all();
AVFormatContext *pFormatCtx = NULL;
int ret = avformat_open_input(&pFormatCtx, url, NULL, NULL);
LOGE("ret:%d", ret);
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
原文:http://my.oschina.net/jerikc/blog/417121
评论(0)