我在调用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);
如 中的解释,-13是权限相关的错误,于是在AndroidManifest.xml中加入以下权限即可: