Lines Matching defs:options
147 const AVClass *class; /* Class for private options. */
167 const char *single_file_name; /* file names as specified in options */
185 SegmentType segment_type_option; /* segment type as specified in options */
227 AVDictionary **options) {
232 err = s->io_open(s, pb, filename, AVIO_FLAG_WRITE, options);
476 static void set_http_options(AVDictionary **options, DASHContext *c)
479 av_dict_set(options, "method", c->method, 0);
480 av_dict_copy(options, c->http_opts, 0);
482 av_dict_set(options, "user_agent", c->user_agent, 0);
484 av_dict_set_int(options, "multiple_requests", 1, 0);
486 av_dict_set_int(options, "timeout", c->timeout, 0);
957 // seg_duration and frag_duration have the same syntax as the global options of
2362 static const AVOption options[] = {
2389 { "format_options","set list of options for the container format (mp4/webm) used for dash", OFFSET(format_options), AV_OPT_TYPE_DICT, {.str = NULL}, 0, 0, E},
2403 { "http_opts", "HTTP protocol options", OFFSET(http_opts), AV_OPT_TYPE_DICT, { .str = NULL }, 0, 0, E },
2414 .option = options,