[FFmpeg-cvslog] http: Don't add a Range: bytes=0- header for POST

Martin Storsjö git at videolan.org
Fri Nov 11 02:53:06 CET 2011


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Thu Nov 10 11:09:26 2011 +0200| [f2d0015531a05587de87575ff73c95b1f95b6df7] | committer: Martin Storsjö

http: Don't add a Range: bytes=0- header for POST

That header simply doesn't make sense in that context.

Signed-off-by: Martin Storsjö <martin at martin.st>

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

 libavformat/http.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/http.c b/libavformat/http.c
index d5c02dd..83ffc0b 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -317,7 +317,7 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr,
     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: "))
+    if (!has_header(s->headers, "\r\nRange: ") && !post)
         len += av_strlcatf(headers + len, sizeof(headers) - len,
                            "Range: bytes=%"PRId64"-\r\n", s->off);
     if (!has_header(s->headers, "\r\nConnection: "))



More information about the ffmpeg-cvslog mailing list