1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

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>
This commit is contained in:
Kacper Michajłow
2023-06-01 21:43:47 +02:00
committed by Leo Izen
parent f780e07149
commit 0cd2e7dcfb

View File

@@ -1205,7 +1205,7 @@ static int process_line(URLContext *h, char *line, int line_count)
} }
} else if (!av_strcasecmp(tag, "Content-Type")) { } else if (!av_strcasecmp(tag, "Content-Type")) {
av_free(s->mime_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")) { } else if (!av_strcasecmp(tag, "Set-Cookie")) {
if (parse_cookie(s, p, &s->cookie_dict)) if (parse_cookie(s, p, &s->cookie_dict))
av_log(h, AV_LOG_WARNING, "Unable to parse '%s'\n", p); av_log(h, AV_LOG_WARNING, "Unable to parse '%s'\n", p);