From 0d23cb8439955db47c53081726df3e217632ed6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Wed, 23 Mar 2005 11:20:47 +0000 Subject: [PATCH] Patch for "uuid" atom followed after atom "ftyp" by "QuickTime " Originally committed as revision 4068 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index 6bfa2d5048..ad51701cae 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1712,6 +1712,7 @@ static int mov_probe(AVProbeData *p) return AVPROBE_SCORE_MAX - 5; case MKTAG( 'f', 't', 'y', 'p' ): case MKTAG( 's', 'k', 'i', 'p' ): + case MKTAG( 'u', 'u', 'i', 'd' ): offset = to_be32(p->buf+offset) + offset; /* if we only find those cause probedata is too small at least rate them */ score = AVPROBE_SCORE_MAX - 50;