From 554c3a1bda4b3274b7861c3a2c31bbce03a9fa7e Mon Sep 17 00:00:00 2001 From: RiCON Date: Sun, 18 Sep 2016 03:19:01 +0100 Subject: stream/stream_lavf: user-agent option is deprecated There was both user-agent and user_agent options, the former is deprecated in FFmpeg/FFmpeg@27714b462 master. Libav uses both forms. This avoids constant `[ffmpeg] http: the user-agent option is deprecated, please use user_agent option` warnings using ytdl_hook. --- stream/stream_lavf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream/stream_lavf.c') diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c index 75508ac009..bd4e629136 100644 --- a/stream/stream_lavf.c +++ b/stream/stream_lavf.c @@ -182,7 +182,7 @@ void mp_setup_av_network_options(AVDictionary **dict, struct mpv_global *global, // HTTP specific options (other protocols ignore them) if (opts->useragent) - av_dict_set(dict, "user-agent", opts->useragent, 0); + av_dict_set(dict, "user_agent", opts->useragent, 0); if (opts->cookies_enabled) { char *file = opts->cookies_file; if (file && file[0]) -- cgit v1.2.3