mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit 'e58c85b0686892960042232e51c77168b264838a'
* commit 'e58c85b0686892960042232e51c77168b264838a': http: Export Content-Type information Conflicts: doc/protocols.texi libavformat/http.c See:76d851b656
See:20899c54f0
See:255ec768da
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
c03af3ac1c
@ -248,7 +248,7 @@ operation. By default it is set to -1, which means that the timeout is
|
|||||||
not specified.
|
not specified.
|
||||||
|
|
||||||
@item mime_type
|
@item mime_type
|
||||||
Set MIME type.
|
Export the MIME type.
|
||||||
|
|
||||||
@item icy
|
@item icy
|
||||||
If set to 1 request ICY (SHOUTcast) metadata from the server. If the server
|
If set to 1 request ICY (SHOUTcast) metadata from the server. If the server
|
||||||
|
@ -58,6 +58,7 @@ typedef struct {
|
|||||||
HTTPAuthState auth_state;
|
HTTPAuthState auth_state;
|
||||||
HTTPAuthState proxy_auth_state;
|
HTTPAuthState proxy_auth_state;
|
||||||
char *headers;
|
char *headers;
|
||||||
|
char *mime_type;
|
||||||
/* Set if the server correctly handles Connection: close and will close
|
/* Set if the server correctly handles Connection: close and will close
|
||||||
* the connection after feeding us the content. */
|
* the connection after feeding us the content. */
|
||||||
int willclose;
|
int willclose;
|
||||||
@ -73,7 +74,6 @@ typedef struct {
|
|||||||
int post_datalen;
|
int post_datalen;
|
||||||
int is_akamai;
|
int is_akamai;
|
||||||
int is_mediagateway;
|
int is_mediagateway;
|
||||||
char *mime_type;
|
|
||||||
char *cookies; ///< holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
|
char *cookies; ///< holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
|
||||||
int icy;
|
int icy;
|
||||||
/* how much data was read since the last ICY metadata packet */
|
/* how much data was read since the last ICY metadata packet */
|
||||||
@ -103,7 +103,7 @@ static const AVOption options[] = {
|
|||||||
{"user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = DEFAULT_USER_AGENT}, 0, 0, D },
|
{"user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = DEFAULT_USER_AGENT}, 0, 0, D },
|
||||||
{"multiple_requests", "use persistent connections", OFFSET(multiple_requests), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, D|E },
|
{"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 },
|
{"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 },
|
{"mime_type", "export the MIME type", OFFSET(mime_type), AV_OPT_TYPE_STRING, {0}, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
|
||||||
{"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 },
|
{"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", "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, AV_OPT_FLAG_EXPORT },
|
{"icy_metadata_headers", "return ICY metadata headers", OFFSET(icy_metadata_headers), AV_OPT_TYPE_STRING, {0}, 0, 0, AV_OPT_FLAG_EXPORT },
|
||||||
@ -490,7 +490,8 @@ static int process_line(URLContext *h, char *line, int line_count,
|
|||||||
s->is_mediagateway = 1;
|
s->is_mediagateway = 1;
|
||||||
}
|
}
|
||||||
} else if (!av_strcasecmp (tag, "Content-Type")) {
|
} else if (!av_strcasecmp (tag, "Content-Type")) {
|
||||||
av_free(s->mime_type); s->mime_type = av_strdup(p);
|
av_free(s->mime_type);
|
||||||
|
s->mime_type = av_strdup(p);
|
||||||
} else if (!av_strcasecmp (tag, "Set-Cookie")) {
|
} else if (!av_strcasecmp (tag, "Set-Cookie")) {
|
||||||
if (!s->cookies) {
|
if (!s->cookies) {
|
||||||
if (!(s->cookies = av_strdup(p)))
|
if (!(s->cookies = av_strdup(p)))
|
||||||
|
Loading…
Reference in New Issue
Block a user