[FFmpeg-devel] [PATCH 03/10] avfilter/chromaber_vulkan: use FF_ARRAY_ELEMS instead of magic number
Wu Jianhua
jianhua.wu at intel.com
Thu Nov 18 06:24:42 EET 2021
Signed-off-by: Wu Jianhua <jianhua.wu at intel.com>
---
libavfilter/vf_chromaber_vulkan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_chromaber_vulkan.c b/libavfilter/vf_chromaber_vulkan.c
index 83ab72f716..b817dd12f7 100644
--- a/libavfilter/vf_chromaber_vulkan.c
+++ b/libavfilter/vf_chromaber_vulkan.c
@@ -125,7 +125,7 @@ static av_cold int init_filter(AVFilterContext *ctx, AVFrame *in)
ff_vk_add_push_constant(ctx, s->pl, 0, sizeof(s->opts),
VK_SHADER_STAGE_COMPUTE_BIT);
- RET(ff_vk_add_descriptor_set(ctx, s->pl, shd, desc_i, 2, 0)); /* set 0 */
+ RET(ff_vk_add_descriptor_set(ctx, s->pl, shd, desc_i, FF_ARRAY_ELEMS(desc_i), 0)); /* set 0 */
GLSLD( distort_chroma_kernel );
GLSLC(0, void main() );
--
2.17.1
More information about the ffmpeg-devel
mailing list