This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 5a7558a0a25318d0c4549c753cdbb1088e087209 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Tue Apr 28 20:25:08 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Sun May 3 18:22:11 2026 +0200 avcodec/tta: Add av_fallthrough Reviewed-by: Ramiro Polla <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/tta.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 467c78514f..644a428c09 100644 --- a/libavcodec/tta.c +++ b/libavcodec/tta.c @@ -310,6 +310,7 @@ static int tta_decode_frame(AVCodecContext *avctx, AVFrame *frame, else if (rice->sum1 > ff_tta_shift_16[rice->k1 + 1]) rice->k1++; value += ff_tta_shift_1[rice->k0]; + av_fallthrough; default: rice->sum0 += value - (rice->sum0 >> 4); if (rice->k0 > 0 && rice->sum0 < ff_tta_shift_16[rice->k0]) _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
