Browse Source

Revert "http: only send range header when necessary"

This reverts commit 48cf0f1c18.
This can cause problems with seekability detection
tags/n1.0
Michael Niedermayer 12 years ago
parent
commit
f0bb88e2bc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/http.c

+ 1
- 1
libavformat/http.c View File

@@ -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);



Loading…
Cancel
Save