This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 87926346e71ff0630e6b225dff10816abcb22601 Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:23:01 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avcodec/eatgq: add fall-through annotations --- libavcodec/eatgq.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c index c94c3e3816..8d6ef122ce 100644 --- a/libavcodec/eatgq.c +++ b/libavcodec/eatgq.c @@ -28,6 +28,7 @@ * http://wiki.multimedia.cx/index.php?title=Electronic_Arts_TGQ */ +#include "libavutil/attributes.h" #define BITSTREAM_READER_LE #include "libavutil/mem_internal.h" @@ -72,6 +73,7 @@ static int tgq_decode_block(TgqContext *s, int16_t block[64], GetBitContext *gb) if (i >= 63) return AVERROR_INVALIDDATA; block[scantable[i++]] = 0; + av_fallthrough; case 0: block[scantable[i++]] = 0; skip_bits(gb, 3); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
