diff options
author | Art Clarke <aclarke@vlideshow.com> | 2008-07-31 19:44:42 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-07-31 19:44:42 +0000 |
commit | 138568e9da0e3abfc818329ab12ea3fb667639fb (patch) | |
tree | 28215ec72c13409362e488fe31ee82db5eb0904b | |
parent | 39a127bfbca8adf8c74ca4e5738bbf9f05cdf4da (diff) | |
download | ffmpeg-138568e9da0e3abfc818329ab12ea3fb667639fb.tar.gz |
downgrade mov negative ctts log message to warning, patch by Art Clarke, aclarke at vlideshow dot com
Originally committed as revision 14492 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 2f406c402d..7b2d00c93a 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1125,7 +1125,7 @@ static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) int duration =get_be32(pb); if (duration < 0) { - av_log(c->fc, AV_LOG_ERROR, "negative ctts, ignoring\n"); + av_log(c->fc, AV_LOG_WARNING, "negative ctts, ignoring\n"); sc->ctts_count = 0; url_fskip(pb, 8 * (entries - i - 1)); break; |