This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 49c62c3337919a909d3317329057169d261d2ed6 Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:25:28 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avcodec/bintext: add fall-through annotations --- libavcodec/bintext.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/bintext.c b/libavcodec/bintext.c index 356042c1f0..4a83907d68 100644 --- a/libavcodec/bintext.c +++ b/libavcodec/bintext.c @@ -30,6 +30,7 @@ #include "config_components.h" +#include "libavutil/attributes.h" #include "libavutil/intreadwrite.h" #include "libavutil/xga_font_data.h" #include "avcodec.h" @@ -92,6 +93,7 @@ static av_cold int decode_init(AVCodecContext *avctx) default: av_log(avctx, AV_LOG_WARNING, "font height %i not supported\n", s->font_height); s->font_height = 8; + av_fallthrough; case 8: s->font = avpriv_cga_font_get(); break; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
