提交 aeedac95 编写于 作者: S Stefano Sabatini

Document av_iformat_next() and av_oformat_next() functions.

Originally committed as revision 17316 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 afb9342a
......@@ -687,7 +687,18 @@ extern AVInputFormat *first_iformat;
extern AVOutputFormat *first_oformat;
#endif
/**
* If f is NULL, returns the first registered input format,
* if f is non-NULL, returns the registered input format next after f,
* or NULL if f is the last one.
*/
AVInputFormat *av_iformat_next(AVInputFormat *f);
/**
* If f is NULL, returns the first registered output format,
* if f is non-NULL, returns the registered output format next after f,
* or NULL if f is the last one.
*/
AVOutputFormat *av_oformat_next(AVOutputFormat *f);
enum CodecID av_guess_image2_codec(const char *filename);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册