Merge commit '7a2fddb4480121712df560cf619c1c3566cae3ff'
* commit '7a2fddb4480121712df560cf619c1c3566cae3ff': http: K&R formatting cosmetics Conflicts: libavformat/http.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -350,12 +350,11 @@ static int process_line(URLContext *h, char *line, int line_count,
|
|||||||
|
|
||||||
/* error codes are 4xx and 5xx, but regard 401 as a success, so we
|
/* error codes are 4xx and 5xx, but regard 401 as a success, so we
|
||||||
* don't abort until all headers have been parsed. */
|
* don't abort until all headers have been parsed. */
|
||||||
if (s->http_code >= 400 && s->http_code < 600 && (s->http_code != 401
|
if (s->http_code >= 400 && s->http_code < 600 &&
|
||||||
|| s->auth_state.auth_type != HTTP_AUTH_NONE) &&
|
(s->http_code != 401 || s->auth_state.auth_type != HTTP_AUTH_NONE) &&
|
||||||
(s->http_code != 407 || s->proxy_auth_state.auth_type != HTTP_AUTH_NONE)) {
|
(s->http_code != 407 || s->proxy_auth_state.auth_type != HTTP_AUTH_NONE)) {
|
||||||
end += strspn(end, SPACE_CHARS);
|
end += strspn(end, SPACE_CHARS);
|
||||||
av_log(h, AV_LOG_WARNING, "HTTP error %d %s\n",
|
av_log(h, AV_LOG_WARNING, "HTTP error %d %s\n", s->http_code, end);
|
||||||
s->http_code, end);
|
|
||||||
return AVERROR(EIO);
|
return AVERROR(EIO);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -392,9 +391,12 @@ static int process_line(URLContext *h, char *line, int line_count,
|
|||||||
}
|
}
|
||||||
if (s->seekable == -1 && (!s->is_akamai || s->filesize != 2147483647))
|
if (s->seekable == -1 && (!s->is_akamai || s->filesize != 2147483647))
|
||||||
h->is_streamed = 0; /* we _can_ in fact seek */
|
h->is_streamed = 0; /* we _can_ in fact seek */
|
||||||
} else if (!av_strcasecmp(tag, "Accept-Ranges") && !strncmp(p, "bytes", 5) && s->seekable == -1) {
|
} else if (!av_strcasecmp(tag, "Accept-Ranges") &&
|
||||||
|
!strncmp(p, "bytes", 5) &&
|
||||||
|
s->seekable == -1) {
|
||||||
h->is_streamed = 0;
|
h->is_streamed = 0;
|
||||||
} else if (!av_strcasecmp (tag, "Transfer-Encoding") && !av_strncasecmp(p, "chunked", 7)) {
|
} else if (!av_strcasecmp(tag, "Transfer-Encoding") &&
|
||||||
|
!av_strncasecmp(p, "chunked", 7)) {
|
||||||
s->filesize = -1;
|
s->filesize = -1;
|
||||||
s->chunksize = 0;
|
s->chunksize = 0;
|
||||||
} else if (!av_strcasecmp(tag, "WWW-Authenticate")) {
|
} else if (!av_strcasecmp(tag, "WWW-Authenticate")) {
|
||||||
@@ -439,7 +441,8 @@ static int process_line(URLContext *h, char *line, int line_count,
|
|||||||
av_freep(&s->icy_metadata_headers);
|
av_freep(&s->icy_metadata_headers);
|
||||||
s->icy_metadata_headers = buf;
|
s->icy_metadata_headers = buf;
|
||||||
} else if (!av_strcasecmp(tag, "Content-Encoding")) {
|
} else if (!av_strcasecmp(tag, "Content-Encoding")) {
|
||||||
if (!av_strncasecmp(p, "gzip", 4) || !av_strncasecmp(p, "deflate", 7)) {
|
if (!av_strncasecmp(p, "gzip", 4) ||
|
||||||
|
!av_strncasecmp(p, "deflate", 7)) {
|
||||||
#if CONFIG_ZLIB
|
#if CONFIG_ZLIB
|
||||||
s->compressed = 1;
|
s->compressed = 1;
|
||||||
inflateEnd(&s->inflate_stream);
|
inflateEnd(&s->inflate_stream);
|
||||||
|
|||||||
Reference in New Issue
Block a user