Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/utils: fix error like "offset 0x1f85: partial file"

2019-01-14 Thread myp...@gmail.com
On Tue, Jan 15, 2019 at 12:44 AM Nicolas George wrote: > > Hendrik Leppkes (12019-01-14): > >http is > > probably the only network protocol you're ever going to read a mov/mp4 > > file from > > Why? Generic file access like SFTP or

Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/utils: fix error like "offset 0x1f85: partial file"

2019-01-14 Thread Nicolas George
Hendrik Leppkes (12019-01-14): >http is > probably the only network protocol you're ever going to read a mov/mp4 > file from Why? Generic file access like SFTP or Samba seem like good candidates too. Regards, -- Nicolas George

Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/utils: fix error like "offset 0x1f85: partial file"

2019-01-14 Thread Hendrik Leppkes
On Mon, Jan 14, 2019 at 5:32 PM Hendrik Leppkes wrote: > > On Mon, Jan 14, 2019 at 5:09 PM Jun Zhao wrote: > > > > fix the issue like "offset 0x1f85: partial file" when demuxer mp4 > > from http/https/crypto > > > > Signed-off-by: Jun Zhao > > --- > > libavformat/utils.c |3 ++- > > 1

Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/utils: fix error like "offset 0x1f85: partial file"

2019-01-14 Thread Hendrik Leppkes
On Mon, Jan 14, 2019 at 5:09 PM Jun Zhao wrote: > > fix the issue like "offset 0x1f85: partial file" when demuxer mp4 > from http/https/crypto > > Signed-off-by: Jun Zhao > --- > libavformat/utils.c |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git

[FFmpeg-devel] [PATCH V2 1/2] lavf/utils: fix error like "offset 0x1f85: partial file"

2019-01-14 Thread Jun Zhao
fix the issue like "offset 0x1f85: partial file" when demuxer mp4 from http/https/crypto Signed-off-by: Jun Zhao --- libavformat/utils.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index 7afef54..92a0eb7 100644 ---