[FFmpeg-cvslog] r14492 - trunk/libavformat/mov.c
bcoudurier
subversion
Thu Jul 31 21:44:42 CEST 2008
Author: bcoudurier
Date: Thu Jul 31 21:44:42 2008
New Revision: 14492
Log:
downgrade mov negative ctts log message to warning, patch by Art Clarke, aclarke at vlideshow dot com
Modified:
trunk/libavformat/mov.c
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c (original)
+++ trunk/libavformat/mov.c Thu Jul 31 21:44:42 2008
@@ -1125,7 +1125,7 @@ static int mov_read_ctts(MOVContext *c,
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;
More information about the ffmpeg-cvslog
mailing list