This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit c49390ee87a12aa021a5dbf9fa86b3f89adcbb3b Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:20:54 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avcodec/jpeglsdec: add fall-through annotations --- libavcodec/jpeglsdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/jpeglsdec.c b/libavcodec/jpeglsdec.c index 4b07f1f8d4..7a8bd2f685 100644 --- a/libavcodec/jpeglsdec.c +++ b/libavcodec/jpeglsdec.c @@ -25,6 +25,7 @@ * JPEG-LS decoder. */ +#include "libavutil/attributes.h" #include "libavutil/mem.h" #include "avcodec.h" #include "codec_internal.h" @@ -77,6 +78,7 @@ int ff_jpegls_decode_lse(MJpegDecodeContext *s) break; case 2: s->palette_index = 0; + av_fallthrough; case 3: tid= bytestream2_get_byte(&s->gB); wt = bytestream2_get_byte(&s->gB); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
