This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit f715db05fa7f5770c3027e0f13e45fa09ab76f0d Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:13:44 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avformat/lmlm4: add fall-through annotations --- libavformat/lmlm4.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/lmlm4.c b/libavformat/lmlm4.c index aeb5580620..c01304dd45 100644 --- a/libavformat/lmlm4.c +++ b/libavformat/lmlm4.c @@ -22,6 +22,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "libavutil/intreadwrite.h" #include "avformat.h" @@ -110,6 +111,7 @@ static int lmlm4_read_packet(AVFormatContext *s, AVPacket *pkt) switch (frame_type) { case LMLM4_I_FRAME: pkt->flags = AV_PKT_FLAG_KEY; + av_fallthrough; case LMLM4_P_FRAME: case LMLM4_B_FRAME: pkt->stream_index = 0; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
