summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorAnshul Maheshwari <er.anshul.maheshwari@gmail.com>2014-03-11 11:56:28 +0530
committerMichael Niedermayer <michaelni@gmx.at>2014-03-11 13:24:53 +0100
commit61f96be08a66e74897406fd64da4e61ea4b6a8c5 (patch)
tree48184b9a0c1aeed9c7bf15a4b75346b77903c0c8 /libavformat/avformat.h
parent99b48fd448fa83252376d1ac96f17c953f07067c (diff)
Documented av_dump_format
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index e0ec3da028..4f7b6ba3fe 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -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,