File tree Expand file tree Collapse file tree 5 files changed +435
-1
lines changed Expand file tree Collapse file tree 5 files changed +435
-1
lines changed Original file line number Diff line number Diff line change @@ -3879,6 +3879,7 @@ ass_filter_deps="libass"
3879
3879
avgblur_opencl_filter_deps=" opencl"
3880
3880
avgblur_vulkan_filter_deps=" vulkan spirv_compiler"
3881
3881
azmq_filter_deps=" libzmq"
3882
+ blackdetect_vulkan_filter_deps=" vulkan spirv_compiler"
3882
3883
blackframe_filter_deps=" gpl"
3883
3884
blend_vulkan_filter_deps=" vulkan spirv_compiler"
3884
3885
boxblur_filter_deps=" gpl"
Original file line number Diff line number Diff line change @@ -8634,7 +8634,7 @@ Filter out noisy pixels from @code{bitplane} set above.
8634
8634
Default is disabled.
8635
8635
@end table
8636
8636
8637
- @section blackdetect
8637
+ @section blackdetect, blackdetect_vulkan
8638
8638
8639
8639
Detect video intervals that are (almost) completely black. Can be
8640
8640
useful to detect chapter transitions, commercials, or invalid
Original file line number Diff line number Diff line change @@ -208,6 +208,7 @@ OBJS-$(CONFIG_BILATERAL_FILTER) += vf_bilateral.o
208
208
OBJS-$(CONFIG_BILATERAL_CUDA_FILTER) += vf_bilateral_cuda.o vf_bilateral_cuda.ptx.o
209
209
OBJS-$(CONFIG_BITPLANENOISE_FILTER) += vf_bitplanenoise.o
210
210
OBJS-$(CONFIG_BLACKDETECT_FILTER) += vf_blackdetect.o
211
+ OBJS-$(CONFIG_BLACKDETECT_VULKAN_FILTER) += vf_blackdetect_vulkan.o
211
212
OBJS-$(CONFIG_BLACKFRAME_FILTER) += vf_blackframe.o
212
213
OBJS-$(CONFIG_BLEND_FILTER) += vf_blend.o framesync.o
213
214
OBJS-$(CONFIG_BLEND_VULKAN_FILTER) += vf_blend_vulkan.o framesync.o vulkan.o vulkan_filter.o
Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ extern const FFFilter ff_vf_bilateral;
192
192
extern const FFFilter ff_vf_bilateral_cuda ;
193
193
extern const FFFilter ff_vf_bitplanenoise ;
194
194
extern const FFFilter ff_vf_blackdetect ;
195
+ extern const FFFilter ff_vf_blackdetect_vulkan ;
195
196
extern const FFFilter ff_vf_blackframe ;
196
197
extern const FFFilter ff_vf_blend ;
197
198
extern const FFFilter ff_vf_blend_vulkan ;
You can’t perform that action at this time.
0 commit comments