/** * A list of option groups that all have the same group type * (e.g. input files or output files) */ typedefstructOptionGroupList { const OptionGroupDef *group_def;
OptionGroup *groups; int nb_groups; } OptionGroupList;
/** * An option extracted from the commandline. * Cannot use AVDictionary because of options like -map which can be * used multiple times. */ typedefstructOption { const OptionDef *opt; constchar *key; constchar *val; } Option;
就是配置的键值对和定义规范了。
OptionDef / OptionGroupDef
这里就是各种参数的规范定义了,比如 OptionGroupDef :
1 2 3 4 5 6 7 8 9 10 11 12 13 14
typedefstructOptionGroupDef { /**< group name */ constchar *name; /** * Option to be used as group separator. Can be NULL for groups which * are terminated by a non-option argument (e.g. ffmpeg output files) */ constchar *sep; /** * Option flags that must be set on each option that is * applied to this group */ int flags; } OptionGroupDef;
/* * The following code is the main loop of the file converter */ staticinttranscode(void) { int ret, i; AVFormatContext *os; OutputStream *ost; InputStream *ist; int64_t timer_start; int64_t total_packets_written = 0;
/* 在这个接口里面会去做一堆的比如帧率计算、缓冲计算、编解码器初始化等操作,最后对所有的输出文件进行写文件头的操作,完成初始化 */ ret = transcode_init(); ......
/* 未接收到停止信号的话就持续进行转换处理,直到完成或接收到停止信号 */ while (!received_sigterm) { ......
/* 这里就是单步转换操作了,后面会进入代码内部近一步介绍 */ ret = transcode_step(); ... }
......
/* 把解码缓冲区的剩余数据再处理一下然后 flush 准备收工 */ for (i = 0; i < nb_input_streams; i++) { ist = input_streams[i]; if (!input_files[ist->file_index]->eof_reached) { process_input_packet(ist, NULL, 0); } } flush_encoders();
term_exit();
/* 写一下文件尾 */ for (i = 0; i < nb_output_files; i++) { os = output_files[i]->ctx; if (!output_files[i]->header_written) { av_log(NULL, AV_LOG_ERROR, "Nothing was written into output file %d (%s), because " "at least one of its streams received no packets.\n", i, os->url); continue; } if ((ret = av_write_trailer(os)) < 0) { av_log(NULL, AV_LOG_ERROR, "Error writing trailer of %s: %s\n", os->url, av_err2str(ret)); if (exit_on_error) exit_program(1); } }
/** * Run a single step of transcoding. * * @return 0 for success, <0 for error */ staticinttranscode_step(void) { OutputStream *ost; InputStream *ist = NULL; int ret;