From 138568e9da0e3abfc818329ab12ea3fb667639fb Mon Sep 17 00:00:00 2001 From: Art Clarke Date: Thu, 31 Jul 2008 19:44:42 +0000 Subject: [PATCH] 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 --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 2f406c4..7b2d00c 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; -- 2.7.4