您的位置:首页 > 其它

FFmpeg函数简单分析:avformat_close_input()

2017-06-26 09:48 1311 查看
本文简单分析FFmpeg的avformat_close_input()函数。该函数用于关闭一个AVFormatContext,一般情况下是和avformat_open_input()成对使用的。

avformat_close_input()的声明位于libavformat\avformat.h,如下所示。

[cpp] view
plain copy

/** 

 * Close an opened input AVFormatContext. Free it and all its contents 

 * and set *s to NULL. 

 */  

void avformat_close_input(AVFormatContext **s);
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: