This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 346d7f63cb27aa9c91a1e14080163e2c04a7b018 Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:13:27 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avformat/lvfdec: add fall-through annotations --- libavformat/lvfdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/lvfdec.c b/libavformat/lvfdec.c index cd013844fb..daa9bd0322 100644 --- a/libavformat/lvfdec.c +++ b/libavformat/lvfdec.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "libavutil/intreadwrite.h" #include "avformat.h" #include "demux.h" @@ -120,6 +121,7 @@ static int lvf_read_packet(AVFormatContext *s, AVPacket *pkt) switch (id) { case MKTAG('0', '0', 'd', 'c'): is_video = 1; + av_fallthrough; case MKTAG('0', '1', 'w', 'b'): if (size < 8) return AVERROR_INVALIDDATA; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
