changeset 3615:f3db1276dc02 libavformat

downgrade mov negative ctts log message to warning, patch by Art Clarke, aclarke at vlideshow dot com
author bcoudurier
date Thu, 31 Jul 2008 19:44:42 +0000
parents 71fdc3f7c771
children bf39ed8d3d69
files mov.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mov.c	Thu Jul 31 19:40:06 2008 +0000
+++ b/mov.c	Thu Jul 31 19:44:42 2008 +0000
@@ -1125,7 +1125,7 @@
         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;