]> git.sesse.net Git - ffmpeg/commitdiff
avformat/dashdec: propagate icy to child AVIOContexts
authorMarvin Scholz <epirat07@gmail.com>
Tue, 17 Dec 2019 00:45:04 +0000 (01:45 +0100)
committerJames Almer <jamrial@gmail.com>
Fri, 27 Dec 2019 17:58:51 +0000 (14:58 -0300)
When the user decides they do not want to to send the Icy-MetaData
header, this should be respected for all requests, not just the first
one.

Fix #5578

Reviewed-by: Liu Steven <lq@chinaffmpeg.org>
Signed-off-by: James Almer <jamrial@gmail.com>
libavformat/dashdec.c

index 72ba9605f0920fc409d78c20d2be218f0ca6b445..15e79fd51a55182cc117502cf3968b935f690284 100644 (file)
@@ -1851,7 +1851,7 @@ static int save_avio_options(AVFormatContext *s)
 {
     DASHContext *c = s->priv_data;
     const char *opts[] = {
-        "headers", "user_agent", "cookies", "http_proxy", "referer", "rw_timeout", NULL };
+        "headers", "user_agent", "cookies", "http_proxy", "referer", "rw_timeout", "icy", NULL };
     const char **opt = opts;
     uint8_t *buf = NULL;
     int ret = 0;