ffmpeg | branch: master | Wu Jianhua <[email protected]> | Fri Nov 19 21:52:40 2021 +0800| [766b1c170b8b5182d4f5036692195512c43e1d2b] | committer: Lynne
avfilter/chromaber_vulkan: use FF_ARRAY_ELEMS instead of magic number Signed-off-by: Wu Jianhua <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=766b1c170b8b5182d4f5036692195512c43e1d2b --- 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 03e493bc7f..912ee8c609 100644 --- a/libavfilter/vf_chromaber_vulkan.c +++ b/libavfilter/vf_chromaber_vulkan.c @@ -126,7 +126,7 @@ static av_cold int init_filter(AVFilterContext *ctx, AVFrame *in) ff_vk_add_push_constant(s->pl, 0, sizeof(s->opts), VK_SHADER_STAGE_COMPUTE_BIT); - RET(ff_vk_add_descriptor_set(vkctx, s->pl, shd, desc_i, 2, 0)); /* set 0 */ + RET(ff_vk_add_descriptor_set(vkctx, s->pl, shd, desc_i, FF_ARRAY_ELEMS(desc_i), 0)); /* set 0 */ GLSLD( distort_chroma_kernel ); GLSLC(0, void main() ); _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
