diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-02-27 12:24:27 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-02-27 12:24:27 +0000 |
commit | da00a1bdf44eb27e5b07f1b173c0721e195f25d1 (patch) | |
tree | d40cba86b78f9a7bc61014969e49ec6352b54a72 | |
parent | f436a23e5976df29e545684bdcf4900130a5d7e9 (diff) | |
download | ffmpeg-da00a1bdf44eb27e5b07f1b173c0721e195f25d1.tar.gz |
add weird first atom to probe, finally fix bartjones.mov
Originally committed as revision 12265 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 1d666dd983..0b3c0a4bc0 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1361,6 +1361,7 @@ static int mov_probe(AVProbeData *p) case MKTAG( 'j', 'u', 'n', 'k' ): 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' ): |