mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-23 04:24:35 +02:00
http: prevent the Range header being sent when seekability probing isnt used
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
dd1e6b2a13
commit
8a33210d1b
@ -419,10 +419,10 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
|
|||||||
if (!has_header(s->headers, "\r\nAccept: "))
|
if (!has_header(s->headers, "\r\nAccept: "))
|
||||||
len += av_strlcpy(headers + len, "Accept: */*\r\n",
|
len += av_strlcpy(headers + len, "Accept: */*\r\n",
|
||||||
sizeof(headers) - len);
|
sizeof(headers) - len);
|
||||||
// Note: we send this on purpose even when s->off is 0,
|
// Note: we send this on purpose even when s->off is 0 when we're probing,
|
||||||
// since it allows us to detect more reliably if a (non-conforming)
|
// since it allows us to detect more reliably if a (non-conforming)
|
||||||
// server supports seeking by analysing the reply headers.
|
// server supports seeking by analysing the reply headers.
|
||||||
if (!has_header(s->headers, "\r\nRange: ") && !post)
|
if (!has_header(s->headers, "\r\nRange: ") && !post && (s->off > 0 || s->seekable == -1))
|
||||||
len += av_strlcatf(headers + len, sizeof(headers) - len,
|
len += av_strlcatf(headers + len, sizeof(headers) - len,
|
||||||
"Range: bytes=%"PRId64"-\r\n", s->off);
|
"Range: bytes=%"PRId64"-\r\n", s->off);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user