FFmpeg find_stream_info变量

代码搜索

D: \ test \ \ FFmpeg \ fftools来源\ ffplay.c(356):静态int find_stream_info=1;
D: \ test \ \ FFmpeg \ fftools来源\ ffplay.c(2801):如果(find_stream_info) {
D: \ test \ \ FFmpeg \ fftools来源\ ffplay.c (2802): AVDictionary * *选择=setup_find_stream_info_opts (ic, codec_opts);
D: \ test \ \ FFmpeg \ fftools来源\ ffplay.c(2805):呃=avformat_find_stream_info (ic,选择);
D: \ test \ \ FFmpeg \ fftools来源\ ffplay.c (3617): {“find_stream_info OPT_BOOL | OPT_INPUT | OPT_EXPERT,{及find_stream_info},


ffplay。c代码中会判断find_stream_info如果为真,就会调用探测码流格式,该变量在静态常量OptionDef选择[]定义如下

{“find_stream_info OPT_BOOL | OPT_INPUT | OPT_EXPERT,{及find_stream_info},
“读取和解码流来填补缺失的信息与启发式”},

FFmpeg find_stream_info变量