summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-09-26 21:06:18 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-09-26 21:06:18 +0000
commita42bf191348f14f5adbd91e13705c8b5cd1a88b4 (patch)
tree88d949979bf8579c3b106850ccaaaf16e1bad847 /libavformat/mov.c
parent7b5252ce3e85be727c1f8cd49e2b8d942fc087d9 (diff)
100l, typo
Originally committed as revision 20033 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index ce5ea788b8..c679d0a83f 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -500,7 +500,7 @@ static int mov_read_ftyp(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
uint8_t type[5] = {0};
get_buffer(pb, type, 4);
- if (strcmp(type, "qt, "))
+ if (strcmp(type, "qt "))
c->isom = 1;
av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
av_metadata_set(&c->fc->metadata, "major_brand", type);