This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 0f81f788298e26172846ed06b5478173fc7b2928 Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:25:38 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avcodec/bink: add fall-through annotations --- libavcodec/bink.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/bink.c b/libavcodec/bink.c index e5300be000..e10c8e0966 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -672,6 +672,7 @@ static int read_dct_coeffs(BinkContext *c, GetBitContext *gb, int32_t block[64], case 0: coef_list[list_pos] = ccoef + 4; mode_list[list_pos] = 1; + av_fallthrough; case 2: if (mode == 2) { coef_list[list_pos] = 0; @@ -792,6 +793,7 @@ static int read_residue(GetBitContext *gb, int16_t block[64], int masks_count) case 0: coef_list[list_pos] = ccoef + 4; mode_list[list_pos] = 1; + av_fallthrough; case 2: if (mode == 2) { coef_list[list_pos] = 0; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
