av_dump_format函数简介

原型:
void av_dump_format(AVFormatContext *ic,
                    int index,
                    const char *url,
                    int is_output);

参数:

* 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 the specified context is an input(0) or output(1)

此函数的作用:av_dump_format()是一个手工调试的函数,能使我们看到pFormatCtx->streams里面有什么内容。一般接下来我们使用av_find_stream_info()函数,它的作用是为pFormatCtx->streams填充上正确的信息。

你可能感兴趣的:(av_dump_format函数简介)