Re: [FFmpeg-devel] [PATCH] avfilter: add xstack filter

2018-11-01 Thread Gyan
On Thu, Oct 25, 2018 at 12:35 AM Paul B Mahol wrote: > > +if (s->is_horizontal || s->is_vertical) { > +if ((ret = av_image_fill_linesizes(linesize, inlink->format, > inlink->w)) < 0) { > +av_frame_free(&out); > +return ret; > +} >

Re: [FFmpeg-devel] [PATCH] avfilter: add xstack filter

2018-10-26 Thread Moritz Barsnick
On Thu, Oct 25, 2018 at 14:34:49 -0800, Lou Logan wrote: > On Wed, Oct 24, 2018, at 11:04 AM, Paul B Mahol wrote: Additional nit: > > +The filter accept the following option: ^ accepts Otherwise I agree with Lou's corrections. Practical filter btw., should save users from a lot

Re: [FFmpeg-devel] [PATCH] avfilter: add xstack filter

2018-10-25 Thread Lou Logan
On Wed, Oct 24, 2018, at 11:04 AM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 45 > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_stack.c | 151 --- > 4 files cha

[FFmpeg-devel] [PATCH] avfilter: add xstack filter

2018-10-24 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 45 libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_stack.c | 151 --- 4 files changed, 187 insertions(+), 11 deletions(-) diff --git a/doc/filters.te

[FFmpeg-devel] [PATCH] avfilter: add xstack filter

2018-10-24 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 35 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_stack.c | 138 +++ 4 files changed, 164 insertions(+), 11 deletions(-) diff --git a/doc/filters.texi