Commit 25a41808 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '76c70e33'

* commit '76c70e33':
  icecast: Do not use chunked post
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 094b3ce8 76c70e33
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment