Re: [FFmpeg-devel] [PATCH 2/2] avfilter: add hstack & vstack filter

2015-08-26 Thread Ganesh Ajjanagadde
On Wed, Aug 26, 2015 at 2:21 PM, Paul B Mahol wrote: > On 8/25/15, Timothy Gu wrote: >> On Tue, Aug 25, 2015 at 7:37 AM Paul B Mahol wrote: >> >>> +@section hstack >>> +Stack streams horizontally. >>> + >>> +All streams must be of same pixel format and of same height. >>> >> >> Add a new line he

Re: [FFmpeg-devel] [PATCH 2/2] avfilter: add hstack & vstack filter

2015-08-26 Thread Paul B Mahol
On 8/25/15, Timothy Gu wrote: > On Tue, Aug 25, 2015 at 7:37 AM Paul B Mahol wrote: > >> +@section hstack >> +Stack streams horizontally. >> + >> +All streams must be of same pixel format and of same height. >> > > Add a new line here Done. > > >> +Note: this filter is faster then using @ref{ov

Re: [FFmpeg-devel] [PATCH 2/2] avfilter: add hstack & vstack filter

2015-08-25 Thread Timothy Gu
On Tue, Aug 25, 2015 at 7:37 AM Paul B Mahol wrote: > +@section hstack > +Stack streams horizontally. > + > +All streams must be of same pixel format and of same height. > Add a new line here > +Note: this filter is faster then using @ref{overlay} and @ref{pad} filter +to create same output.

[FFmpeg-devel] [PATCH 2/2] avfilter: add hstack & vstack filter

2015-08-25 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 29 + libavfilter/Makefile | 2 + libavfilter/allfilters.c | 2 + libavfilter/vf_stack.c | 271 +++ 4 files changed, 304 insertions(+) create mode 100644 libavfilter/vf_stack.c