Re: [FFmpeg-devel] [PATCH] avfilter/vf_nlmeans_opencl: making filter independent of bit depth

2021-04-03 Thread Lucas Clemente Vella
Em sáb., 3 de abr. de 2021 às 19:26, Mark Thompson escreveu: > > On 21/03/2021 23:22, Lucas Clemente Vella wrote: > > This filter originally quantized OpenCL float images fetchs in 256 levels, > > and computed the integral image of squared differences in 32 bit integers. &g

Re: [FFmpeg-devel] [PATCH] avfilter/vf_nlmeans_opencl: making filter independent of bit depth

2021-03-24 Thread Lucas Clemente Vella
Hello. Is there something I should be doing in order to get this patch reviewed for inclusion in master? I couldn't find the proper maintainer for this filter in the MAINTAINERS file. -- Lucas Clemente Vella lve...@gmail.com ___ ffmpeg-devel ma

[FFmpeg-devel] [PATCH] avfilter/vf_nlmeans_opencl: making filter independent of bit depth

2021-03-21 Thread Lucas Clemente Vella
intensity. This was tested on a 4K frame from an 10-bit source. Signed-off-by: Lucas Clemente Vella --- libavfilter/opencl/nlmeans.cl | 31 ++ libavfilter/vf_nlmeans_opencl.c | 34 + 2 files changed, 19 insertions(+), 46 deletions

[FFmpeg-devel] [PATCH] avfilter/vf_nlmeans_opencl: 16-bit depth compatibility

2021-03-21 Thread Lucas Clemente Vella
the filter, at the cost of being twice as slower. Signed-off-by: Lucas Clemente Vella --- libavfilter/opencl/nlmeans.cl | 28 ++-- libavfilter/vf_nlmeans_opencl.c | 6 ++ 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/libavfilter/opencl/nlmeans.cl b