This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 3fbf5faa3f8b343f2203ea14cc140389b1db4ab0
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Sun May 3 19:09:00 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Tue May 5 12:46:23 2026 +0200

    avutil/hwcontext_vulkan: Add av_fallthrough
    
    Reviewed-by: Lynne <[email protected]>
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavutil/hwcontext_vulkan.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index 291708c3b3..489ca712ee 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -4914,6 +4914,7 @@ static int vulkan_transfer_data_to(AVHWFramesContext 
*hwfc, AVFrame *dst,
             (p->vkctx.extensions & FF_VK_EXT_EXTERNAL_FD_SEM))
 #endif
             return vulkan_transfer_data_from_cuda(hwfc, dst, src);
+        av_fallthrough;
 #endif
     default:
         if (src->hw_frames_ctx)
@@ -5034,6 +5035,7 @@ static int vulkan_transfer_data_from(AVHWFramesContext 
*hwfc, AVFrame *dst,
             (p->vkctx.extensions & FF_VK_EXT_EXTERNAL_FD_SEM))
 #endif
             return vulkan_transfer_data_to_cuda(hwfc, dst, src);
+        av_fallthrough;
 #endif
     default:
         if (dst->hw_frames_ctx)

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to