[FFmpeg-cvslog] Revert "http: only send range header when necessary"

Michael Niedermayer git at videolan.org
Sun Sep 23 13:52:24 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Sep 23 13:21:35 2012 +0200| [f0bb88e2bc8b20e0181e73ae71b62bcf1eb081b5] | committer: Michael Niedermayer

Revert "http: only send range header when necessary"

This reverts commit 48cf0f1c18f2f91363601c94177c71bc3ac13b8e.
This can cause problems with seekability detection

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f0bb88e2bc8b20e0181e73ae71b62bcf1eb081b5
---

 libavformat/http.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/http.c b/libavformat/http.c
index 669fdf4..85ed7a5 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);
 



More information about the ffmpeg-cvslog mailing list