diff options
author | François Revol <revol@free.fr> | 2005-03-23 11:20:47 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2005-03-23 11:20:47 +0000 |
commit | 0d23cb8439955db47c53081726df3e217632ed6c (patch) | |
tree | c101f70976cc6efc4ce43d549ea43e62f02023ee /libavformat/mov.c | |
parent | 8272de4ea249f6734bae9a6cbae1252cd2820f25 (diff) | |
download | ffmpeg-0d23cb8439955db47c53081726df3e217632ed6c.tar.gz |
Patch for "uuid" atom followed after atom "ftyp" by "QuickTime <ffmpeg AT gmail DOT com>"
Originally committed as revision 4068 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |