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

Duncan Salerno git at videolan.org
Sun Sep 23 02:59:07 CEST 2012


ffmpeg | branch: master | Duncan Salerno <duncan.salerno at gmail.com> | Sat Sep 22 21:17:36 2012 +0100| [48cf0f1c18f2f91363601c94177c71bc3ac13b8e] | committer: Michael Niedermayer

http: only send range header when necessary

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

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

diff --git a/libavformat/http.c b/libavformat/http.c
index 85ed7a5..669fdf4 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)
+    if (!has_header(s->headers, "\r\nRange: ") && !post && s->off > 0)
         len += av_strlcatf(headers + len, sizeof(headers) - len,
                            "Range: bytes=%"PRId64"-\r\n", s->off);
 



More information about the ffmpeg-cvslog mailing list