aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-28 19:19:52 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-28 19:19:52 +0100
commitd04bfdf0f792d3060fd919fae9ef3cd8e38ea9d7 (patch)
treee10d1631a4a3bf4f54cc625b12899c9cc95c27d4
parent05c4b502165e1789f4f17a2bad27255c2f5d4201 (diff)
parente10028431d5cd90db7b2a4b0d16721bb1a6d75e3 (diff)
downloadffmpeg-d04bfdf0f792d3060fd919fae9ef3cd8e38ea9d7.tar.gz
Merge commit 'e10028431d5cd90db7b2a4b0d16721bb1a6d75e3' into release/2.4
* commit 'e10028431d5cd90db7b2a4b0d16721bb1a6d75e3': icecast: Do not use chunked post Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/icecast.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/icecast.c b/libavformat/icecast.c
index 56a2976f06..7d60e44a4a 100644
--- a/libavformat/icecast.c
+++ b/libavformat/icecast.c
@@ -114,6 +114,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))