From 7b451cdb2155b79839fe82a37bc7c36cceb49978 Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Tue, 28 Apr 2026 16:01:42 +0200 Subject: [PATCH] avformat/nuv: add fall-through annotations --- libavformat/nuv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/nuv.c b/libavformat/nuv.c index 0938660c62..1525e2d597 100644 --- a/libavformat/nuv.c +++ b/libavformat/nuv.c @@ -276,6 +276,7 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) avio_skip(pb, size); break; } + av_fallthrough; case NUV_VIDEO: if (ctx->v_id < 0) { av_log(s, AV_LOG_ERROR, "Video packet in file without video stream!\n");