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

Git pushed a commit to branch master
in repository ffmpeg.

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

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

diff --git a/libavcodec/dxtory.c b/libavcodec/dxtory.c
index a9b5d835db..1acb7db88c 100644
--- a/libavcodec/dxtory.c
+++ b/libavcodec/dxtory.c
@@ -22,6 +22,7 @@
 
 #include <inttypes.h>
 
+#include "libavutil/attributes.h"
 #include "libavutil/common.h"
 #include "libavutil/intreadwrite.h"
 
@@ -63,6 +64,7 @@ static void do_vflip(AVCodecContext *avctx, AVFrame *pic, int 
vflip)
         pic->linesize[1] = -pic->linesize[1];
         pic->data[2] += (avctx->height - 1) * pic->linesize[2];
         pic->linesize[2] = -pic->linesize[2];
+        av_fallthrough;
     case AV_PIX_FMT_RGB555LE:
     case AV_PIX_FMT_RGB565LE:
     case AV_PIX_FMT_BGR24:

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

Reply via email to