This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 40ed144d3adb4a792c7d531c64c77e299dcb3518 Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 17:35:31 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:07 2026 +0200 avcodec/riscv/vvc: fix implicit fall-through into no-op default cases Signed-off-by: Kacper Michajłow <[email protected]> --- libavcodec/riscv/vvc/dsp_init.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/riscv/vvc/dsp_init.c b/libavcodec/riscv/vvc/dsp_init.c index f8fde41529..910d43a9bc 100644 --- a/libavcodec/riscv/vvc/dsp_init.c +++ b/libavcodec/riscv/vvc/dsp_init.c @@ -102,7 +102,6 @@ void ff_vvc_dsp_init_riscv(VVCDSPContext *const c, const int bd) break; case 10: c->inter.sad = ff_vvc_sad_rvv_256; - default: break; } } else if (vlenb >= 16) { @@ -118,7 +117,6 @@ void ff_vvc_dsp_init_riscv(VVCDSPContext *const c, const int bd) break; case 10: c->inter.sad = ff_vvc_sad_rvv_128; - default: break; } } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
