Lines Matching defs:options
146 static const AVOption options[] = {
200 static int http_open_cnx_internal(URLContext *h, AVDictionary **options)
232 err = av_dict_set(options, "http_proxy", s->http_proxy, 0);
267 &h->interrupt_callback, options,
352 static int http_open_cnx(URLContext *h, AVDictionary **options)
374 av_dict_copy(options, s->chained_options, 0);
380 ret = http_open_cnx_internal(h, options);
459 AVDictionary *options = NULL;
511 ret = http_open_cnx(h, &options);
512 av_dict_free(&options);
650 AVDictionary **options) {
663 if ((ret = av_dict_set_int(options, "listen", s->listen, 0)) < 0)
666 &h->interrupt_callback, options,
682 AVDictionary **options)
702 if (options)
703 av_dict_copy(&s->chained_options, *options, 0);
720 return http_listen(h, uri, flags, options);
722 ret = http_open_cnx(h, options);
1905 AVDictionary *options = NULL;
1952 if ((ret = http_open_cnx(h, &options)) < 0) {
1953 av_dict_free(&options);
1961 av_dict_free(&options);
1989 .option = options, \