summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-06-01 21:43:47 +0200
committerLeo Izen <leo.izen@gmail.com>2023-06-29 17:28:46 -0400
commit0cd2e7dcfbc835f4519f1b2b7da6bd902dbb0190 (patch)
tree5b5780b8e5a57e6469799ab36ad37364b15c1917 /libavformat/http.c
parentf780e07149bc3aec592e74c5eb2ee6acaa719127 (diff)
avformat/http: copy only mime type from Content-Type
Content-Type can include charset and boundary which is not a part of mime type and shouldn't be copied as such. Fixes HLS playback when the Content-Type includes additional fields. Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index 0817aafb5b..fd931c2d8e 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -1205,7 +1205,7 @@ static int process_line(URLContext *h, char *line, int line_count)
}
} else if (!av_strcasecmp(tag, "Content-Type")) {
av_free(s->mime_type);
- s->mime_type = av_strdup(p);
+ s->mime_type = av_get_token((const char **)&p, ";");
} else if (!av_strcasecmp(tag, "Set-Cookie")) {
if (parse_cookie(s, p, &s->cookie_dict))
av_log(h, AV_LOG_WARNING, "Unable to parse '%s'\n", p);