summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-25 13:54:33 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-25 13:54:33 +0000
commit7e6273322ca47d7e28a84238c5cd2de3667eb47b (patch)
tree93cb43f37a8bef85edbe47a3e84ae5faba954ab6 /libavformat/mov.c
parentcfb5a2abcbf9ee79a9469bb7626da0be3e2d4375 (diff)
error is -1
Originally committed as revision 12959 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 aa4f02ec7f..39622bff39 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -451,7 +451,7 @@ static int mov_read_mdhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
int lang;
if (version > 1)
- return 1; /* unsupported */
+ return -1; /* unsupported */
get_be24(pb); /* flags */
if (version == 1) {