原型:
* 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
<strong>void av_dump_format(AVFormatContext *ic,
int index,
const char *url,
int is_output);</strong>
参数:
* 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函数的用法及参数详情,该函数用于打印输入或输出格式的详细信息,如持续时间、比特率、流等内容。同时,还提到了av_find_stream_info函数的作用,即为AVFormatContext结构中的流填充正确信息。
1748

被折叠的 条评论
为什么被折叠?



