projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21c4393
)
Revert "http: only send range header when necessary"
author
Michael Niedermayer
<michaelni@gmx.at>
Sun, 23 Sep 2012 11:21:35 +0000
(13:21 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sun, 23 Sep 2012 11:21:35 +0000
(13:21 +0200)
This reverts commit
48cf0f1c18f2f91363601c94177c71bc3ac13b8e
.
This can cause problems with seekability detection
libavformat/http.c
patch
|
blob
|
history
diff --git
a/libavformat/http.c
b/libavformat/http.c
index
669fdf4
..
85ed7a5
100644
(file)
--- 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);