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

2018-10-22 Thread Paul B Mahol
On 10/20/18, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 29 + > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_vibrance.c | 240 ++ > 4 files changed, 271 insertions(+)

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

2018-10-20 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 29 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_vibrance.c | 240 ++ 4 files changed, 271 insertions(+) create mode 100644 libavfilter/vf_vibrance.c

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

2018-10-19 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_vibrance.c | 169 ++ 3 files changed, 171 insertions(+) create mode 100644 libavfilter/vf_vibrance.c diff --git a/libavfilter/Makefile