summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-04-25 15:57:15 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-04-25 15:57:15 +0000
commit263a93ecff7268d803d8704e50460e5876e828e1 (patch)
treecc7c3e39c50c44c4e4c73fc5b3c90f97e90501c5 /libavformat/mov.c
parentb60d13799d5fb03ebc54713b1000aec450981ddf (diff)
add 'wide' reversed tag in probe, detect broken xdcam files xdcam_hd_1080i60.mov
Originally committed as revision 8811 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 0dd8824e62..e8482b05ae 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1255,6 +1255,7 @@ static int mov_probe(AVProbeData *p)
case MKTAG( 'u', 'd', 't', 'a' ): /* Packet Video PVAuthor adds this and a lot of more junk */
return AVPROBE_SCORE_MAX;
/* those are more common words, so rate then a bit less */
+ case MKTAG( 'e', 'd', 'i', 'w' ): /* xdcam files have reverted first tags */
case MKTAG( 'w', 'i', 'd', 'e' ):
case MKTAG( 'f', 'r', 'e', 'e' ):
case MKTAG( 'j', 'u', 'n', 'k' ):