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,
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
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