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

2018-05-08 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- configure | 2 + doc/filters.texi | 32 +++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_fftdnoiz.c | 691 ++ 5 files changed, 727 insertions(+) create

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

2018-05-07 Thread James Almer
On 5/7/2018 10:59 AM, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_fftdnoiz.c | 393 > ++ > 3 files changed, 395 insertions(+) > create mode 100644 l

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

2018-05-07 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_fftdnoiz.c | 393 ++ 3 files changed, 395 insertions(+) create mode 100644 libavfilter/vf_fftdnoiz.c diff --git a/libavfilter/Makefile