diff options
author | Karthick J <kjeyapal@akamai.com> | 2017-11-24 06:41:25 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2017-11-24 06:41:25 +0800 |
commit | f335efc0add8b32b0fe7223c3d897a5e41edbf64 (patch) | |
tree | bfc80f000666438ec8264c587234805a3cee4313 /libavformat | |
parent | ef8979f1992fd7753c2a236ac219a7147b7fe99a (diff) | |
download | ffmpeg-f335efc0add8b32b0fe7223c3d897a5e41edbf64.tar.gz |
avformat/hlsenc: Minor fix in setting http options for master playlist
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/hlsenc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 3c47ced30d..525605b8f5 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1089,8 +1089,7 @@ static int create_master_playlist(AVFormatContext *s, return 0; } - if (hls->user_agent) - av_dict_set(&options, "user-agent", hls->user_agent, 0); + set_http_options(s, &options, hls); ret = s->io_open(s, &master_pb, hls->master_m3u8_url, AVIO_FLAG_WRITE,\ &options); |