summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2014-06-08 11:56:34 -0400
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-07-02 23:37:21 -0400
commitcdab9db2adeec46b3984309c8c651bdd737d2b6b (patch)
tree4f17b8c6dee106982c604a4a55d6042310c52124 /libavformat/avformat.h
parentdf949b645b12d62bb4da56d629a887c81f67f2e5 (diff)
lavf: document av_dump_format()
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 473b8daedf..ac4cd31157 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1835,6 +1835,16 @@ void av_url_split(char *proto, int proto_size,
const char *url);
+/**
+ * Print detailed information about the input or output format, such as
+ * duration, bitrate, streams, container, programs, metadata, side data,
+ * codec and time base.
+ *
+ * @param ic the context to analyze
+ * @param index the index to print, if you have multiple inputs or outputs
+ * @param url the URL to print, such as source or destination file
+ * @param is_output whether the context is input or ouput
+ */
void av_dump_format(AVFormatContext *ic,
int index,
const char *url,