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

Git pushed a commit to branch master
in repository ffmpeg.

commit 20d6759f8e5a73e55a870a332be2f2734144df4c
Author:     Marvin Scholz <[email protected]>
AuthorDate: Tue Feb 17 21:59:06 2026 +0100
Commit:     Marvin Scholz <[email protected]>
CommitDate: Tue Apr 28 12:29:37 2026 +0000

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

diff --git a/libavcodec/vb.c b/libavcodec/vb.c
index 42d6f26f6c..bd5f786bd1 100644
--- a/libavcodec/vb.c
+++ b/libavcodec/vb.c
@@ -24,6 +24,7 @@
  * VB Video decoder
  */
 
+#include "libavutil/attributes.h"
 #include "libavutil/mem.h"
 #include "avcodec.h"
 #include "bytestream.h"
@@ -159,6 +160,7 @@ static int vb_decode_framedata(VBDecContext *c, int offset)
                 break;
             case 1:
                 pattern = ~pattern;
+                av_fallthrough;
             case 2:
                 a = bytestream2_get_byte(&g);
                 for (y = 0; y < 4; y++)

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

Reply via email to