diff options
author | François Revol <revol@free.fr> | 2003-01-17 08:29:37 +0000 |
---|---|---|
committer | François Revol <revol@free.fr> | 2003-01-17 08:29:37 +0000 |
commit | 8b879f18d1c3145d1a3c37980cb318bcdba585e2 (patch) | |
tree | a79ffea564be1c7adf9e750f7fc02c552d94d572 | |
parent | 204c0f48f467ca9e08cd2032bacbac77af468aec (diff) | |
download | ffmpeg-8b879f18d1c3145d1a3c37980cb318bcdba585e2.tar.gz |
Fix probing for some files (ew.mov, april.mov)
Originally committed as revision 1466 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 91c7155b08..3e1dae8fb9 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1111,7 +1111,8 @@ static int mov_probe(AVProbeData *p) case MKTAG( 'm', 'o', 'o', 'v' ): case MKTAG( 'w', 'i', 'd', 'e' ): case MKTAG( 'f', 'r', 'e', 'e' ): - case MKTAG( 'm', 'd', 'a', 't'): + case MKTAG( 'm', 'd', 'a', 't' ): + case MKTAG( 'p', 'n', 'o', 't' ): /* detect movs with preview pics like ew.mov and april.mov */ return AVPROBE_SCORE_MAX; case MKTAG( 'f', 't', 'y', 'p' ): case MKTAG( 's', 'k', 'i', 'p' ): |