diff options
author | Peter Ross <pross@xvid.org> | 2024-11-22 08:03:35 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2024-11-25 17:58:30 +1100 |
commit | 4472dec51d834167fae1dc36357bbaa1482372a0 (patch) | |
tree | 0b9d50de17eb85186979455f3bb4e92c6bd5865d /libavformat | |
parent | 433cf391f58210432be907d817654929a66e80ba (diff) | |
download | ffmpeg-4472dec51d834167fae1dc36357bbaa1482372a0.tar.gz |
avformat/mm: add fallthrough comment
Fixes CID 1634888
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mm.c b/libavformat/mm.c index 74e2716926..07ba6ac4f5 100644 --- a/libavformat/mm.c +++ b/libavformat/mm.c @@ -190,6 +190,7 @@ static int read_packet(AVFormatContext *s, default : av_log(s, AV_LOG_INFO, "unknown chunk type 0x%x\n", type); + /* fallthrough */ case MM_TYPE_AUDIO2 : avio_skip(pb, length); } |