summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-23 13:21:35 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-23 13:21:35 +0200
commitf0bb88e2bc8b20e0181e73ae71b62bcf1eb081b5 (patch)
tree55c55129113ea09de1c9a44c53125fb2f553a569 /libavformat/http.c
parent21c4393f1ca2214e466a12b45c234e0494fa1633 (diff)
Revert "http: only send range header when necessary"
This reverts commit 48cf0f1c18f2f91363601c94177c71bc3ac13b8e. This can cause problems with seekability detection
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 669fdf408d..85ed7a5c81 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -411,7 +411,7 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
if (!has_header(s->headers, "\r\nAccept: "))
len += av_strlcpy(headers + len, "Accept: */*\r\n",
sizeof(headers) - len);
- if (!has_header(s->headers, "\r\nRange: ") && !post && s->off > 0)
+ if (!has_header(s->headers, "\r\nRange: ") && !post)
len += av_strlcatf(headers + len, sizeof(headers) - len,
"Range: bytes=%"PRId64"-\r\n", s->off);