Re: [FFmpeg-devel] [PATCH 2/5] lavf/concatdec: support per-file options.

2021-08-14 Thread Nicolas George
Andreas Rheinhardt (12021-07-28): > > -if ((ret = avformat_open_input(&cat->avf, file->url, NULL, NULL)) < 0 > > || > > +ret = av_dict_copy(&options, file->options, 0); > > +if (ret < 0) > > +return ret; > > + > > +if ((ret = avformat_open_input(&cat->avf, file->url, NULL,

Re: [FFmpeg-devel] [PATCH 2/5] lavf/concatdec: support per-file options.

2021-07-28 Thread Andreas Rheinhardt
Nicolas George: > Signed-off-by: Nicolas George > --- > doc/demuxers.texi | 4 > libavformat/concatdec.c | 37 - > 2 files changed, 40 insertions(+), 1 deletion(-) > > > I intend to refactor the parser some time later. > > > diff --git a/doc/dem

Re: [FFmpeg-devel] [PATCH 2/5] lavf/concatdec: support per-file options.

2021-07-28 Thread Andreas Rheinhardt
Nicolas George: > Signed-off-by: Nicolas George > --- > doc/demuxers.texi | 4 > libavformat/concatdec.c | 37 - > 2 files changed, 40 insertions(+), 1 deletion(-) > > > I intend to refactor the parser some time later. > > > diff --git a/doc/dem