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.
This commit is contained in:
RiCON 2016-09-18 03:19:01 +01:00 committed by wm4
parent cb604d5412
commit 554c3a1bda
1 changed files with 1 additions and 1 deletions

View File

@ -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])