diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-25 13:54:33 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-04-25 13:54:33 +0000 |
commit | 7e6273322ca47d7e28a84238c5cd2de3667eb47b (patch) | |
tree | 93cb43f37a8bef85edbe47a3e84ae5faba954ab6 | |
parent | cfb5a2abcbf9ee79a9469bb7626da0be3e2d4375 (diff) | |
download | ffmpeg-7e6273322ca47d7e28a84238c5cd2de3667eb47b.tar.gz |
error is -1
Originally committed as revision 12959 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 2 |
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) { |