Browse Source

lavf: document av_dump_format()

tags/n2.3
Vittorio Giovara 11 years ago
parent
commit
cdab9db2ad
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      libavformat/avformat.h

+ 10
- 0
libavformat/avformat.h View File

@@ -1835,6 +1835,16 @@ void av_url_split(char *proto, int proto_size,
const char *url); 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, void av_dump_format(AVFormatContext *ic,
int index, int index,
const char *url, const char *url,


Loading…
Cancel
Save