This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 095897060a6d5d0072ef8a883e31c6d109a4831b Author: Andreas Rheinhardt <[email protected]> AuthorDate: Tue Apr 28 21:20:43 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Sun May 3 18:23:05 2026 +0200 avcodec/libzvbi-teletextdec: Add av_fallthrough Reviewed-by: Ramiro Polla <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/libzvbi-teletextdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/libzvbi-teletextdec.c b/libavcodec/libzvbi-teletextdec.c index e02ecb8b3a..06fd54cbb7 100644 --- a/libavcodec/libzvbi-teletextdec.c +++ b/libavcodec/libzvbi-teletextdec.c @@ -428,6 +428,7 @@ static void fix_transparency(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi case VBI_OPAQUE: if (!ctx->transparent_bg) break; + av_fallthrough; case VBI_SEMI_TRANSPARENT: if (ctx->opacity > 0) { if (ctx->opacity < 255) @@ -436,6 +437,7 @@ static void fix_transparency(TeletextContext *ctx, AVSubtitleRect *sub_rect, vbi *pixel += VBI_NB_COLORS; break; } + av_fallthrough; case VBI_TRANSPARENT_FULL: for(; pixel < pixelnext; pixel++) if (*pixel == vc->background) _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
