From 092d223b7bfe928583c8a8248d5c957537e15c38 Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Wed, 18 Feb 2026 00:18:02 +0100 Subject: [PATCH] avcodec/tiff: add fall-through annotations --- libavcodec/tiff.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index bb8120bc1b..3e261c99f5 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -1061,6 +1061,7 @@ static int init_image(TiffContext *s, AVFrame *frame) s->avctx->pix_fmt = AV_PIX_FMT_MONOBLACK; break; } + av_fallthrough; case 21: case 41: s->avctx->pix_fmt = AV_PIX_FMT_PAL8;