summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorMoritz Barsnick <barsnick@gmx.net>2016-08-10 21:18:00 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-08-14 10:44:38 +0200
commitd14993478cd9d6274f439f3200ea11c63ff8e0fa (patch)
tree17cb0127758030906c8e404b1780cb30be6951f4 /libavformat/http.c
parentec4ed2f69c240b901ef1491c752ed425cd7e9618 (diff)
libavformat/http: add support for content_type option in listen mode
Instead of silently ignoring the content_type option in listen mode, apply its value to the provided "Content-Type:" header. Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index cb5824fabd..adb3d92e21 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -355,7 +355,7 @@ static int http_write_reply(URLContext* h, int status_code)
case 200:
reply_code = 200;
reply_text = "OK";
- content_type = "application/octet-stream";
+ content_type = s->content_type ? s->content_type : "application/octet-stream";
break;
case AVERROR_HTTP_SERVER_ERROR:
case 500: