Skip to content

Commit d9f498e

Browse files
committed
lavfi: add nlmeans_vulkan filter
1 parent a08e1a0 commit d9f498e

File tree

6 files changed

+1270
-0
lines changed

6 files changed

+1270
-0
lines changed

configure

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3710,6 +3710,7 @@ minterpolate_filter_select="scene_sad"
37103710
mptestsrc_filter_deps="gpl"
37113711
negate_filter_deps="lut_filter"
37123712
nlmeans_opencl_filter_deps="opencl"
3713+
nlmeans_vulkan_filter_deps="vulkan spirv_compiler"
37133714
nnedi_filter_deps="gpl"
37143715
ocr_filter_deps="libtesseract"
37153716
ocv_filter_deps="libopencv"

libavfilter/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,8 @@ OBJS-$(CONFIG_MULTIPLY_FILTER) += vf_multiply.o
390390
OBJS-$(CONFIG_NEGATE_FILTER) += vf_negate.o
391391
OBJS-$(CONFIG_NLMEANS_FILTER) += vf_nlmeans.o
392392
OBJS-$(CONFIG_NLMEANS_OPENCL_FILTER) += vf_nlmeans_opencl.o opencl.o opencl/nlmeans.o
393+
OBJS-$(CONFIG_NLMEANS_VULKAN_FILTER) += vf_nlmeans_vulkan.o vulkan.o vulkan_filter.o \
394+
vulkan/prefix_sum.o
393395
OBJS-$(CONFIG_NNEDI_FILTER) += vf_nnedi.o
394396
OBJS-$(CONFIG_NOFORMAT_FILTER) += vf_format.o
395397
OBJS-$(CONFIG_NOISE_FILTER) += vf_noise.o

libavfilter/allfilters.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ extern const AVFilter ff_vf_multiply;
368368
extern const AVFilter ff_vf_negate;
369369
extern const AVFilter ff_vf_nlmeans;
370370
extern const AVFilter ff_vf_nlmeans_opencl;
371+
extern const AVFilter ff_vf_nlmeans_vulkan;
371372
extern const AVFilter ff_vf_nnedi;
372373
extern const AVFilter ff_vf_noformat;
373374
extern const AVFilter ff_vf_noise;

0 commit comments

Comments
 (0)