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

Git pushed a commit to branch master
in repository ffmpeg.

commit 909e00f3fe130cca25eaea9bd5541a163d1809bd
Author:     Marvin Scholz <[email protected]>
AuthorDate: Tue Apr 28 15:52:09 2026 +0200
Commit:     Marvin Scholz <[email protected]>
CommitDate: Thu Jul 2 18:23:18 2026 +0200

    avformat/jvdec: add fall-through annotations
---
 libavformat/jvdec.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/jvdec.c b/libavformat/jvdec.c
index 4f4566f64b..456a8c52e9 100644
--- a/libavformat/jvdec.c
+++ b/libavformat/jvdec.c
@@ -25,6 +25,7 @@
  * @author Peter Ross <[email protected]>
  */
 
+#include "libavutil/attributes.h"
 #include "libavutil/channel_layout.h"
 #include "libavutil/intreadwrite.h"
 #include "libavutil/mem.h"
@@ -182,6 +183,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
                 pkt->flags       |= AV_PKT_FLAG_KEY;
                 return 0;
             }
+            av_fallthrough;
         case JV_VIDEO:
             jv->state++;
             if (jvf->video_size || jvf->palette_size) {
@@ -206,6 +208,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
                     pkt->flags |= AV_PKT_FLAG_KEY;
                 return 0;
             }
+            av_fallthrough;
         case JV_PADDING:
             avio_skip(pb, FFMAX(e->size - jvf->audio_size - jvf->video_size
                                         - jvf->palette_size, 0));

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

Reply via email to