[FFmpeg-cvslog] r14272 - trunk/libavformat/mov.c
bcoudurier
subversion
Fri Jul 18 02:23:37 CEST 2008
Author: bcoudurier
Date: Fri Jul 18 02:23:37 2008
New Revision: 14272
Log:
return max score when ftyp atom is encoutered
Modified:
trunk/libavformat/mov.c
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c (original)
+++ trunk/libavformat/mov.c Fri Jul 18 02:23:37 2008
@@ -1699,6 +1699,7 @@ static int mov_probe(AVProbeData *p)
case MKTAG('m','d','a','t'):
case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
+ case MKTAG('f','t','y','p'):
return AVPROBE_SCORE_MAX;
/* those are more common words, so rate then a bit less */
case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
@@ -1708,7 +1709,6 @@ static int mov_probe(AVProbeData *p)
case MKTAG('p','i','c','t'):
return AVPROBE_SCORE_MAX - 5;
case MKTAG(0x82,0x82,0x7f,0x7d ):
- case MKTAG('f','t','y','p'):
case MKTAG('s','k','i','p'):
case MKTAG('u','u','i','d'):
case MKTAG('p','r','f','l'):
More information about the ffmpeg-cvslog
mailing list