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

Git pushed a commit to branch master
in repository ffmpeg.

commit 0f3fe9e2bf85fc8be6ad96eef26f527a7a3fdba2
Author:     Marvin Scholz <[email protected]>
AuthorDate: Wed Feb 18 00:26:01 2026 +0100
Commit:     Marvin Scholz <[email protected]>
CommitDate: Tue Apr 28 12:29:37 2026 +0000

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

diff --git a/libavcodec/avs.c b/libavcodec/avs.c
index b53175f640..42fc99cb56 100644
--- a/libavcodec/avs.c
+++ b/libavcodec/avs.c
@@ -23,6 +23,7 @@
 #include "codec_internal.h"
 #include "decode.h"
 #include "get_bits.h"
+#include "libavutil/attributes.h"
 
 typedef struct AvsContext {
     AVFrame *frame;
@@ -98,6 +99,7 @@ static int avs_decode_frame(AVCodecContext * avctx, AVFrame 
*picture,
     case AVS_I_FRAME:
         p->pict_type = AV_PICTURE_TYPE_I;
         p->flags |= AV_FRAME_FLAG_KEY;
+        av_fallthrough;
     case AVS_P_FRAME_3X3:
         vect_w = 3;
         vect_h = 3;

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

Reply via email to