]> git.sesse.net Git - ffmpeg/commitdiff
Documented av_dump_format
authorAnshul Maheshwari <er.anshul.maheshwari@gmail.com>
Tue, 11 Mar 2014 06:26:28 +0000 (11:56 +0530)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 11 Mar 2014 12:24:53 +0000 (13:24 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/avformat.h

index e0ec3da02870509e7d53f11db129ae7f5121dfbd..4f7b6ba3fe520219e7163930bd2ff01537d9ca90 100644 (file)
@@ -2371,7 +2371,13 @@ void av_url_split(char *proto,         int proto_size,
                   char *path,          int path_size,
                   const char *url);
 
-
+/**
+ * log a nice Dump of input format context or output format context
+ * @param ic already initialized Format Context, must not be NULL.
+ * @param index index of the stream to dump information about
+ * @param url name of file or URL of stream to print information about
+ * @param is_output Select whether specified context is of input(0) or output(1)
+ */
 void av_dump_format(AVFormatContext *ic,
                     int index,
                     const char *url,