This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 5cee00b85f8e0f71f1f6ec0f8efb1c45288aad0e Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:26:12 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avcodec/argo: add fall-through annotations --- libavcodec/argo.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/argo.c b/libavcodec/argo.c index b2e9f3bb18..3b0d4fca0f 100644 --- a/libavcodec/argo.c +++ b/libavcodec/argo.c @@ -634,24 +634,28 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *rframe, ret = decode_avcf(avctx, frame); break; } + av_fallthrough; case MKBETAG('A', 'L', 'C', 'D'): if (avctx->pix_fmt == AV_PIX_FMT_PAL8) { s->key = 0; ret = decode_alcd(avctx, frame); break; } + av_fallthrough; case MKBETAG('R', 'L', 'E', 'F'): if (avctx->pix_fmt == AV_PIX_FMT_PAL8) { s->key = 1; ret = decode_rle(avctx, frame); break; } + av_fallthrough; case MKBETAG('R', 'L', 'E', 'D'): if (avctx->pix_fmt == AV_PIX_FMT_PAL8) { s->key = 0; ret = decode_rle(avctx, frame); break; } + av_fallthrough; default: av_log(avctx, AV_LOG_DEBUG, "unknown chunk 0x%X\n", chunk); break; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
