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

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new b6655e9594 avcodec/dpx: make the lack of break in a switch case 
explicit
b6655e9594 is described below

commit b6655e9594945c1a0666029a9206c066b71f73b5
Author:     James Almer <[email protected]>
AuthorDate: Thu Dec 11 16:21:23 2025 -0300
Commit:     James Almer <[email protected]>
CommitDate: Fri Dec 12 18:18:46 2025 +0000

    avcodec/dpx: make the lack of break in a switch case explicit
    
    Should fix CID 1676036
    
    Signed-off-by: James Almer <[email protected]>
---
 libavcodec/dpx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
index 8c075fd538..52a03501ec 100644
--- a/libavcodec/dpx.c
+++ b/libavcodec/dpx.c
@@ -237,6 +237,7 @@ static void unpack_frame(AVCodecContext *avctx, AVFrame *p, 
const uint8_t *buf,
         break;
     case 16:
         elements *= 2;
+    // fall-through
     case 8:
         if (   avctx->pix_fmt == AV_PIX_FMT_YUVA444P
             || avctx->pix_fmt == AV_PIX_FMT_YUV444P) {

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

Reply via email to