av_dump_format()
此函数的作用:av_dump_format()是一个手工调试的函数,能使我们看到pFormatCtx->streams里面有什么内容。一般接下来我们使用av_find_stream_info()函数,它的作用是为pFormatCtx->streams填充上正确的信息。在避免调用av_find_stream_info()探测流的时候,会先看看调用av_find_stream_info()之后,通过av_dump_format(pFormatCtx),来查看有哪些值是需要被赋值的,当前并没有通过源码解析探测流的具体操作,而是通过该函数查看pFormatCtx的值
av_malloc
之前的ffmpeg有些函数例如xmalloc已经没有踪影,内存操作的常见函数位于libavutil\mem.c中。本文记录FFmpeg开发中最常使用的几个函数:av_malloc(),av_realloc(),av_mallocz(),av_calloc(),av_free(),av_freep()。例子如下:
pFormatContext->streams[nVideoIndex]->codecpar->extradata = (uint8_t*)av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
参考
http://blog.csdn.net/handsomehong/article/details/73732393
原文地址:http://fengyuzaitu.blog.51cto.com/5218690/1983039