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

Git pushed a commit to branch master
in repository ffmpeg.

commit 8f50eeee0205815f57a4d3a664a4f1d3067582e9
Author:     Marvin Scholz <[email protected]>
AuthorDate: Tue Feb 17 21:34:53 2026 +0100
Commit:     Marvin Scholz <[email protected]>
CommitDate: Tue Apr 28 12:29:37 2026 +0000

    avcodec/zmbv: add fall-through annotations
---
 libavcodec/zmbv.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c
index f0bffd8966..947097bb4a 100644
--- a/libavcodec/zmbv.c
+++ b/libavcodec/zmbv.c
@@ -26,6 +26,7 @@
 
 #include <stddef.h>
 
+#include "libavutil/attributes.h"
 #include "libavutil/common.h"
 #include "libavutil/imgutils.h"
 #include "libavutil/intreadwrite.h"
@@ -583,6 +584,7 @@ static int decode_frame(AVCodecContext *avctx, AVFrame 
*frame,
         case ZMBV_FMT_8BPP:
             for (j = 0; j < 256; j++)
                 AV_WN32(&frame->data[1][j * 4], 0xFFU << 24 | 
AV_RB24(&c->pal[j * 3]));
+            av_fallthrough;
         case ZMBV_FMT_15BPP:
         case ZMBV_FMT_16BPP:
 #ifdef ZMBV_ENABLE_24BPP

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

Reply via email to