Re: [FFmpeg-devel] [PATCH] avfilter: add lv2 wrapper filter

2017-11-25 Thread Paul B Mahol
On 11/24/17, Paul B Mahol wrote: > On 11/24/17, Derek Buitenhuis wrote: >> On 11/23/2017 9:16 PM, Paul B Mahol wrote: >> >>> +typedef struct LV2Context { >>> +const AVClass *class; >>> +char *plugin_uri; >>> +char *options; >>> + >>> +

Re: [FFmpeg-devel] [PATCH] avfilter: add lv2 wrapper filter

2017-11-24 Thread Paul B Mahol
On 11/24/17, Derek Buitenhuis wrote: > On 11/23/2017 9:16 PM, Paul B Mahol wrote: > >> +typedef struct LV2Context { >> +const AVClass *class; >> +char *plugin_uri; >> +char *options; >> + >> +unsigned long nb_inputs; >> +unsigned long

Re: [FFmpeg-devel] [PATCH] avfilter: add lv2 wrapper filter

2017-11-24 Thread Derek Buitenhuis
On 11/23/2017 9:16 PM, Paul B Mahol wrote: > +typedef struct LV2Context { > +const AVClass *class; > +char *plugin_uri; > +char *options; > + > +unsigned long nb_inputs; > +unsigned long nb_inputcontrols; > +unsigned long nb_outputs; Why are you using longs instead of

Re: [FFmpeg-devel] [PATCH] avfilter: add lv2 wrapper filter

2017-11-24 Thread Paul B Mahol
On 11/23/17, James Almer wrote: > On 11/23/2017 6:16 PM, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> configure| 4 + >> doc/filters.texi | 37 >> libavfilter/Makefile | 1 + >> libavfilter/af_lv2.c |

Re: [FFmpeg-devel] [PATCH] avfilter: add lv2 wrapper filter

2017-11-23 Thread James Almer
On 11/23/2017 6:16 PM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > configure| 4 + > doc/filters.texi | 37 > libavfilter/Makefile | 1 + > libavfilter/af_lv2.c | 552 > +++ >

[FFmpeg-devel] [PATCH] avfilter: add lv2 wrapper filter

2017-11-23 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- configure| 4 + doc/filters.texi | 37 libavfilter/Makefile | 1 + libavfilter/af_lv2.c | 552 +++ libavfilter/allfilters.c | 1 + 5 files changed, 595