[FFmpeg-cvslog] avformat/mlvdec: skip over some other known block types
Peter Ross
git at videolan.org
Sun Jan 12 02:06:07 EET 2025
ffmpeg | branch: master | Peter Ross <pross at xvid.org> | Thu Dec 12 18:39:50 2024 +1100| [330470ef247b49252153130c398010f65f4e8db8] | committer: Peter Ross
avformat/mlvdec: skip over some other known block types
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=330470ef247b49252153130c398010f65f4e8db8
---
libavformat/mlvdec.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavformat/mlvdec.c b/libavformat/mlvdec.c
index 2b3de185a5..6f4fa80f32 100644
--- a/libavformat/mlvdec.c
+++ b/libavformat/mlvdec.c
@@ -265,9 +265,12 @@ static int scan_file(AVFormatContext *avctx, AVStream *vst, AVStream *ast, int f
unsigned int length = avio_rl32(pb);
read_string(avctx, pb, "version", length);
size -= length + 4;
+ } else if (type == MKTAG('D','A','R','K')) {
+ } else if (type == MKTAG('D','I','S','O')) {
} else if (type == MKTAG('M','A','R','K')) {
} else if (type == MKTAG('N','U','L','L')) {
} else if (type == MKTAG('M','L','V','I')) { /* occurs when MLV and Mnn files are concatenated */
+ } else if (type == MKTAG('R','A','W','C')) {
} else {
av_log(avctx, AV_LOG_INFO, "unsupported tag %s, size %u\n",
av_fourcc2str(type), size);
More information about the ffmpeg-cvslog
mailing list