Re: [FFmpeg-devel] [PATCH] avformat/http: allow content range to set filesize

2017-12-20 Thread Aman Gupta
On Tue, Jan 31, 2017 at 2:26 AM, Philip de Nier wrote: > On 09/12/2016 11:54, PHILIP DE NIER wrote: > > Hi, > > Attached patch fixes issue #6007 for me. > > I think it could improved / extended because the "if (s->seekable == > > -1 && (!s->is_akamai || s->content_range_len != 2147483647))" is >

Re: [FFmpeg-devel] [PATCH] avformat/http: allow content range to set filesize

2017-01-31 Thread Philip de Nier
On 09/12/2016 11:54, PHILIP DE NIER wrote: > Hi, > Attached patch fixes issue #6007 for me. > I think it could improved / extended because the "if (s->seekable == > -1 && (!s->is_akamai || s->content_range_len != 2147483647))" is > probably better placed http_read_header along with the similar > is

[FFmpeg-devel] [PATCH] avformat/http: allow content range to set filesize

2016-12-09 Thread PHILIP DE NIER
Hi, Attached patch fixes issue #6007 for me. I think it could improved / extended because the "if (s->seekable == -1 && (!s->is_akamai || s->content_range_len != 2147483647))" is probably better placed http_read_header along with the similar is_mediagateway workaround. I wasn't sure whether the