mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-20 13:57:00 +00:00
Icecast: Send content-type in all cases
This is needed because Icecast since version 2.4.1 doesn't default to audio/mpeg anymore. AVOption default not used here, since a later check if -content_type is set is performed and would break. Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
3a6bb97350
commit
8562c1483b
@ -130,6 +130,8 @@ static int icecast_open(URLContext *h, const char *uri, int flags)
|
||||
av_dict_set(&opt_dict, "send_expect_100", s->legacy_icecast ? "0" : "1", 0);
|
||||
if (NOT_EMPTY(s->content_type))
|
||||
av_dict_set(&opt_dict, "content_type", s->content_type, 0);
|
||||
else
|
||||
av_dict_set(&opt_dict, "content_type", "audio/mpeg", 0);
|
||||
if (NOT_EMPTY(s->user_agent))
|
||||
av_dict_set(&opt_dict, "user_agent", s->user_agent, 0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user