This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 310cf06a276b63f8c4e12ec5f2a666c8c24ef27f Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sun May 3 19:02:12 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue May 5 12:46:00 2026 +0200 avcodec/av1dec: Avoid implicit fallthrough Fixes a -Wimplicit-fallthrough warning from Clang; GCC does not warn about this. Reviewed-by: Lynne <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/av1dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c index a7383a88be..78edb3c8d4 100644 --- a/libavcodec/av1dec.c +++ b/libavcodec/av1dec.c @@ -1462,7 +1462,7 @@ static int av1_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame) case AV1_OBU_TEMPORAL_DELIMITER: s->raw_frame_header = NULL; raw_tile_group = NULL; - // fall-through + break; case AV1_OBU_TILE_LIST: case AV1_OBU_PADDING: break; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
