代码
AVDictionary* pOptions = NULL;
handle->pFormatContext->probesize = 100 *1024;
handle->pFormatContext->max_analyze_duration = 5 * AV_TIME_BASE;
if (avformat_find_stream_info(handle->pFormatContext, &pOptions) < 0)
说明
这样设置probesize和max_analyze_duration是可以减少探测时间,但是是以牺牲成功率为代价的,有时候探测不到流信息,就会播不出来,
出现在网络丢包的情况下(使用UDP进行视频数据的传输)或者网路特别复杂,跨越多个网段
http://blog.csdn.net/u011913612/article/details/53642355详细描述探测流格式信息的过程
摘自
http://blog.csdn.net/itpeng523/article/details/38581301
avformat_find_stream_info探测流格式信息
原文地址:http://fengyuzaitu.blog.51cto.com/5218690/1975295