Re: [FFmpeg-devel] [PATCH 3/5] lavfi: add a new filtergraph parsing API

2023-01-31 Thread Anton Khirnov
Quoting Nicolas George (2023-01-30 13:59:44) > > +static unsigned > > +find_linklabel(AVFilterGraphSegment *seg, const char *label, > > + int output, size_t idx_chain, size_t idx_filter, > > + AVFilterParams **pp) > > +{ > > +for (; idx_chain < seg->nb_chains;

Re: [FFmpeg-devel] [PATCH 3/5] lavfi: add a new filtergraph parsing API

2023-01-30 Thread Nicolas George
Anton Khirnov (12023-01-20): > Callers currently have two ways of adding filters to a graph - they can > either > - create, initialize, and link them manually > - use one of the avfilter_graph_parse*() functions, which take a > (typically end-user-written) string, split it into individual filter

[FFmpeg-devel] [PATCH 3/5] lavfi: add a new filtergraph parsing API

2023-01-20 Thread Anton Khirnov
Callers currently have two ways of adding filters to a graph - they can either - create, initialize, and link them manually - use one of the avfilter_graph_parse*() functions, which take a (typically end-user-written) string, split it into individual filter definitions+options, then create