Lines Matching defs:options
71 const AVClass *class; /**< Class for private options. */
264 AVDictionary *options = NULL;
265 av_dict_copy(&options, seg->format_options, 0);
266 av_dict_set(&options, "fflags", "-autobsf", 0);
267 err = avformat_write_header(oc, &options);
268 av_dict_free(&options);
676 AVDictionary *options = NULL;
696 "segment_time, segment_times, and segment_frames options "
775 av_dict_copy(&options, seg->format_options, 0);
776 av_dict_set(&options, "fflags", "-autobsf", 0);
777 ret = avformat_init_output(oc, &options);
778 if (av_dict_count(options)) {
780 "Some of the provided format options are not recognized\n");
781 av_dict_free(&options);
784 av_dict_free(&options);
1010 static const AVOption options[] = {
1013 { "segment_format_options", "set list of options for the container format used for the segments", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, E },
1057 .option = options,