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

Git pushed a commit to branch master
in repository ffmpeg.

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

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

diff --git a/libavcodec/dxa.c b/libavcodec/dxa.c
index 5b429781df..39719bc575 100644
--- a/libavcodec/dxa.c
+++ b/libavcodec/dxa.c
@@ -24,6 +24,7 @@
  * DXA Video decoder
  */
 
+#include "libavutil/attributes.h"
 #include "libavutil/intreadwrite.h"
 #include "libavutil/mem.h"
 #include "bytestream.h"
@@ -82,6 +83,7 @@ static int decode_13(AVCodecContext *avctx, DxaDecContext *c, 
uint8_t* dst,
                     return AVERROR_INVALIDDATA;
                 }
                 tmp2 += x + y*stride;
+                av_fallthrough;
             case 0: // skip
             case 5: // skip in method 12
                 for(y = 0; y < 4; y++){
@@ -144,6 +146,7 @@ static int decode_13(AVCodecContext *avctx, DxaDecContext 
*c, uint8_t* dst,
                             return AVERROR_INVALIDDATA;
                         }
                         tmp2 += x + y*stride;
+                        av_fallthrough;
                     case 0x00: // skip
                         tmp[d + 0         ] = tmp2[0];
                         tmp[d + 1         ] = tmp2[1];

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

Reply via email to