This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 5144b51151f151410897bb15ac2bb7c9279ebf7d Author: Andreas Rheinhardt <[email protected]> AuthorDate: Tue Apr 28 21:06:18 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Sun May 3 18:22:49 2026 +0200 avfilter/vf_super2xsai: Add av_fallthrough Reviewed-by: Ramiro Polla <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavfilter/vf_super2xsai.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/vf_super2xsai.c b/libavfilter/vf_super2xsai.c index cf3aaebd64..ef75b4dc73 100644 --- a/libavfilter/vf_super2xsai.c +++ b/libavfilter/vf_super2xsai.c @@ -271,6 +271,7 @@ static int config_input(AVFilterLink *inlink) case AV_PIX_FMT_RGB565BE: case AV_PIX_FMT_BGR565BE: s->is_be = 1; + av_fallthrough; case AV_PIX_FMT_RGB565LE: case AV_PIX_FMT_BGR565LE: s->hi_pixel_mask = 0xF7DEF7DE; @@ -283,6 +284,7 @@ static int config_input(AVFilterLink *inlink) case AV_PIX_FMT_BGR555BE: case AV_PIX_FMT_RGB555BE: s->is_be = 1; + av_fallthrough; case AV_PIX_FMT_BGR555LE: case AV_PIX_FMT_RGB555LE: s->hi_pixel_mask = 0x7BDE7BDE; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
