summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-03 13:38:28 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-03 13:39:23 +0200
commit44f079b27e8141c3871327c81d054777413fa49a (patch)
treea87d424eca7497f6be9b7b94193cce2fe2d900d6 /libavformat/avformat.h
parent982920cfaa40d5b575225fc2baaf03f6250f7a03 (diff)
parentcdab9db2adeec46b3984309c8c651bdd737d2b6b (diff)
Merge commit 'cdab9db2adeec46b3984309c8c651bdd737d2b6b'
* commit 'cdab9db2adeec46b3984309c8c651bdd737d2b6b': lavf: document av_dump_format() Conflicts: libavformat/avformat.h See: 61f96be08a66e74897406fd64da4e61ea4b6a8c5 Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index a2cea10180..7a0093ad40 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -2506,11 +2506,15 @@ 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
+ * 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 index of the stream to dump information about
+ * @param url the URL to print, such as source or destination file
* @param is_output Select whether specified context is of input(0) or output(1)
*/
void av_dump_format(AVFormatContext *ic,