diff options
Diffstat (limited to 'extra/ffmpeg/ffmpeg-2.1-avformat-http.fix-cookies.patch')
-rw-r--r-- | extra/ffmpeg/ffmpeg-2.1-avformat-http.fix-cookies.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/ffmpeg/ffmpeg-2.1-avformat-http.fix-cookies.patch b/extra/ffmpeg/ffmpeg-2.1-avformat-http.fix-cookies.patch new file mode 100644 index 000000000..7c826a3b8 --- /dev/null +++ b/extra/ffmpeg/ffmpeg-2.1-avformat-http.fix-cookies.patch @@ -0,0 +1,28 @@ +From b73900b8a6c0a23e63e84a5eed0a5b9b3ffe1198 Mon Sep 17 00:00:00 2001 +From: Michael Niedermayer <michaelni@gmx.at> +Date: Thu, 31 Oct 2013 01:42:13 +0100 +Subject: [PATCH] avformat/http: fix cookies + +Fixes Ticket3096 + +Signed-off-by: Michael Niedermayer <michaelni@gmx.at> +--- + libavformat/http.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libavformat/http.c b/libavformat/http.c +index c5b5c53..9be1181 100644 +--- a/libavformat/http.c ++++ b/libavformat/http.c +@@ -95,7 +95,7 @@ static const AVOption options[] = { + {"multiple_requests", "use persistent connections", OFFSET(multiple_requests), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, D|E }, + {"post_data", "set custom HTTP post data", OFFSET(post_data), AV_OPT_TYPE_BINARY, .flags = D|E }, + {"mime_type", "set MIME type", OFFSET(mime_type), AV_OPT_TYPE_STRING, {0}, 0, 0, 0 }, +-{"cookies", "set cookies to be sent in applicable future requests, use newline delimited Set-Cookie HTTP field value syntax", OFFSET(cookies), AV_OPT_TYPE_STRING, {0}, 0, 0, 0 }, ++{"cookies", "set cookies to be sent in applicable future requests, use newline delimited Set-Cookie HTTP field value syntax", OFFSET(cookies), AV_OPT_TYPE_STRING, {0}, 0, 0, D }, + {"icy", "request ICY metadata", OFFSET(icy), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, D }, + {"icy_metadata_headers", "return ICY metadata headers", OFFSET(icy_metadata_headers), AV_OPT_TYPE_STRING, {0}, 0, 0, 0 }, + {"icy_metadata_packet", "return current ICY metadata packet", OFFSET(icy_metadata_packet), AV_OPT_TYPE_STRING, {0}, 0, 0, 0 }, +-- +1.8.4.1 + |