[FFmpeg-devel] [PATCH] add the protection for http range get request starting from file size

2018-10-26 Thread shenqichao
Signed-off-by: shenqichao --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index 3a35bc7eac..129f683d15 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -1669,7 +1669,7 @@ static int64_t

[FFmpeg-devel] [PATCH] libavformat/http.c: add the protection about the http seek implement if a http resource is not streamed, it can seek to the end of this resouce.I add the detail information at h

2018-10-29 Thread shenqichao
Signed-off-by: shenqichao --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index 3a35bc7eac..9401a5c63e 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -1669,7 +1669,7 @@ static int64_t

[FFmpeg-devel] [PATCH] libavformat/http.c: add the protection about the http seek implement

2018-10-29 Thread shenqichao
If a http resource is not streamed, it can seek to the end of this resouce. I add the detail information at https://trac.ffmpeg.org/ticket/6885 Fixes ticket #6885. Signed-off-by: shenqichao --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat