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

2019-10-21 Thread Paul B Mahol
will apply On 10/13/19, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 17 ++ > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_bilateral.c | 372 + > 4 files changed, 391 ins

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

2019-10-16 Thread Moritz Barsnick
On Wed, Oct 16, 2019 at 13:19:44 -0400, Andriy Gelman wrote: > > +@item planes > > +Set planes to filter. Default is first only. > > +@end table > > It may be good to add that planes is a decimal representation of the planes to > filter. (i.e. 3 implies that 1st/2nd planes are filtered, 7 implies

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

2019-10-16 Thread Andriy Gelman
On Sun, 13. Oct 17:08, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 17 ++ > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vf_bilateral.c | 372 + > 4 files changed, 391 insert

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

2019-10-13 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 17 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_bilateral.c | 372 + 4 files changed, 391 insertions(+) create mode 100644 libavfilter/vf_bilateral.c d

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

2019-04-29 Thread Moritz Barsnick
Hi Paul, On Sun, Apr 28, 2019 at 16:42:45 +0200, Paul B Mahol wrote: Cosmetic nits: > +Alowed range is from 1 to 6. ^ Allowed > +Alowed range is from 2 to 256. ^ Ditto. > +float *bbufers[256]; ^ I'm not sure of the intent, but would this be "buffers" or "bbuffers"? > +s

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

2019-04-28 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 25 libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_gblur.c | 257 ++- 4 files changed, 280 insertions(+), 4 deletions(-) diff --git a/doc/filters.texi b/doc/