[FFmpeg-cvslog] r17316 - trunk/libavformat/avformat.h
stefano
subversion
Sun Feb 15 10:04:09 CET 2009
Author: stefano
Date: Sun Feb 15 10:04:08 2009
New Revision: 17316
Log:
Document av_iformat_next() and av_oformat_next() functions.
Modified:
trunk/libavformat/avformat.h
Modified: trunk/libavformat/avformat.h
==============================================================================
--- trunk/libavformat/avformat.h Sun Feb 15 10:03:47 2009 (r17315)
+++ trunk/libavformat/avformat.h Sun Feb 15 10:04:08 2009 (r17316)
@@ -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);
More information about the ffmpeg-cvslog
mailing list