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

Git pushed a commit to branch master
in repository ffmpeg.

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

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

diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c
index e9d4283eef..29b1d85be3 100644
--- a/libavcodec/lcldec.c
+++ b/libavcodec/lcldec.c
@@ -42,6 +42,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
+#include "libavutil/attributes.h"
 #include "libavutil/mem.h"
 #include "libavutil/pixdesc.h"
 #include "avcodec.h"
@@ -239,11 +240,13 @@ static int decode_frame(AVCodecContext *avctx, AVFrame 
*frame,
                 break;
             case IMGTYPE_YUV422:
                 aligned_width &= ~3;
+                av_fallthrough;
             case IMGTYPE_YUV211:
                 bppx2 = 4;
                 break;
             case IMGTYPE_YUV411:
                 aligned_width &= ~3;
+                av_fallthrough;
             case IMGTYPE_YUV420:
                 bppx2 = 3;
                 break;

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

Reply via email to