diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-04-15 12:25:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-04-15 12:25:03 +0000 |
commit | 7344dac4ad24b758f50bc730f98816546f364c08 (patch) | |
tree | f8f43839a2133e73e962ba828e320178bfc9fc68 /libavformat/mov.c | |
parent | 0c73985444b09195a267b4ece5c6af9c77745c04 (diff) | |
download | ffmpeg-7344dac4ad24b758f50bc730f98816546f364c08.tar.gz |
Fix probe for mov00003.mqv.
Originally committed as revision 12833 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-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 fc040fa161..c4fd248cee 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1682,6 +1682,7 @@ static int mov_probe(AVProbeData *p) case MKTAG( 'f', 't', 'y', 'p' ): case MKTAG( 's', 'k', 'i', 'p' ): case MKTAG( 'u', 'u', 'i', 'd' ): + case MKTAG( 'p', 'r', 'f', 'l' ): offset = AV_RB32(p->buf+offset) + offset; /* if we only find those cause probedata is too small at least rate them */ score = AVPROBE_SCORE_MAX - 50; |