This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit bcf0b71d8c2831922318d9568c1d065362534863 Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:12:51 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avformat/mov: add fall-through annotations --- libavformat/mov.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index dc9233b8a8..187558e19b 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2359,8 +2359,10 @@ static int mov_read_ares(MOVContext *c, AVIOContext *pb, MOVAtom atom) if (den >= INT_MAX / 2) return 0; den *= 2; + av_fallthrough; case 1: sti->display_aspect_ratio = (AVRational){ num, den }; + av_fallthrough; default: return 0; } @@ -9790,6 +9792,7 @@ static int mov_probe(const AVProbeData *p) /* check for obvious tags */ case MKTAG('m','o','o','v'): moov_offset = offset + 4; + av_fallthrough; case MKTAG('m','d','a','t'): case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */ case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
