Commit d0f8cd6f authored by mmu_man's avatar mmu_man

Fix probing for some files (ew.mov, april.mov)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1466 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 62485a61
......@@ -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' ):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment