Re: [FFmpeg-devel] [PATCH 01/10] avformat/argo_asf: fix enforcement of chunk count

2020-09-20 Thread Paul B Mahol
On Sun, Sep 20, 2020 at 08:06:18AM +, Zane van Iperen wrote: > Enforcing num_chunks == 1 only makes sense when demuxing from an ASF > file. When embedded in a BRP file, an ASF stream can have multiple chunks. > > Signed-off-by: Zane van Iperen > --- > libavformat/argo_asf.c | 17 ++--

Re: [FFmpeg-devel] [PATCH 01/10] avformat/argo_asf: fix enforcement of chunk count

2020-09-20 Thread Zane van Iperen
On Sun, 20 Sep 2020 10:54:44 +0200 "Paul B Mahol" wrote: > > On Sun, Sep 20, 2020 at 08:06:18AM +, Zane van Iperen wrote: > > Enforcing num_chunks == 1 only makes sense when demuxing from an ASF > > file. When embedded in a BRP file, an ASF stream can have multiple chunks. > > > > Signed-off

[FFmpeg-devel] [PATCH 01/10] avformat/argo_asf: fix enforcement of chunk count

2020-09-20 Thread Zane van Iperen
Enforcing num_chunks == 1 only makes sense when demuxing from an ASF file. When embedded in a BRP file, an ASF stream can have multiple chunks. Signed-off-by: Zane van Iperen --- libavformat/argo_asf.c | 17 ++--- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/libavfo