[FFmpeg-devel] [PATCH] avfilter: add tpad filter tests

2022-03-17 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- tests/fate/filter-video.mak | 4 tests/ref/fate/filter-tpad-add | 11 +++ tests/ref/fate/filter-tpad-clone | 10 ++ 3 files changed, 25 insertions(+) create mode 100644 tests/ref/fate/filter-tpad-add create mode 100644 tests/ref/fate/

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

2018-11-01 Thread Paul B Mahol
On 10/30/18, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 40 +++ > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_tpad.c| 218 +++ > 4 files changed, 260 insertions(+) >

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

2018-10-30 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 40 +++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_tpad.c| 218 +++ 4 files changed, 260 insertions(+) create mode 100644 libavfilter/vf_tpad.c diff --

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

2018-10-30 Thread Gyan
On Tue, Oct 30, 2018 at 3:27 PM Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 22 ++ > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_tpad.c| 166 +++ > 4 files changed, 1

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

2018-10-30 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 22 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_tpad.c| 166 +++ 4 files changed, 190 insertions(+) create mode 100644 libavfilter/vf_tpad.c diff --g