mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
icecast: Do not use chunked post
Icecast uses HTTP 1.0 while Libav uses HTTP 1.1 and enables by default chunked post. Icecast actually forwards the HTTP chunk headers to the listener as part of the media stream (without the chunk encoding HTTP headers) causing the players to lose sync. Disabling the option is enough to feed icecast properly. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
e44ee1eb8d
commit
76c70e33d2
@ -126,6 +126,7 @@ static int icecast_open(URLContext *h, const char *uri, int flags)
|
||||
av_dict_set(&opt_dict, "method", s->legacy_icecast ? "SOURCE" : "PUT", 0);
|
||||
av_dict_set(&opt_dict, "auth_type", "basic", 0);
|
||||
av_dict_set(&opt_dict, "headers", headers, 0);
|
||||
av_dict_set(&opt_dict, "chunked_post", "0", 0);
|
||||
if (NOT_EMPTY(s->content_type))
|
||||
av_dict_set(&opt_dict, "content_type", s->content_type, 0);
|
||||
if (NOT_EMPTY(s->user_agent))
|
||||
|
Loading…
Reference in New Issue
Block a user