mirror of https://git.ffmpeg.org/ffmpeg.git
Fix probing for some files (ew.mov, april.mov)
Originally committed as revision 1466 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
204c0f48f4
commit
8b879f18d1
|
@ -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' ):
|
||||
|
|
Loading…
Reference in New Issue