]> git.sesse.net Git - ffmpeg/commitdiff
nut: Mark non-fatal errors as warnings
authorLuca Barbato <lu_zero@gentoo.org>
Tue, 24 Nov 2015 00:25:04 +0000 (01:25 +0100)
committerLuca Barbato <lu_zero@gentoo.org>
Wed, 25 Nov 2015 08:01:25 +0000 (09:01 +0100)
And make one more informative.

libavformat/nutdec.c

index e560a7e8eef1e3bf727d18acdf89cda16deedcd7..17ae5225330411222ee9f6bb40e9bf74799749e8 100644 (file)
@@ -532,7 +532,9 @@ static int decode_info_header(NUTContext *nut)
         }
 
         if (stream_id_plus1 > s->nb_streams) {
-            av_log(s, AV_LOG_ERROR, "invalid stream id for info packet\n");
+            av_log(s, AV_LOG_WARNING,
+                   "invalid stream id %d for info packet\n",
+                   stream_id_plus1);
             continue;
         }
 
@@ -613,7 +615,7 @@ static int find_and_decode_index(NUTContext *nut)
     avio_seek(bc, filesize - 12, SEEK_SET);
     avio_seek(bc, filesize - avio_rb64(bc), SEEK_SET);
     if (avio_rb64(bc) != INDEX_STARTCODE) {
-        av_log(s, AV_LOG_ERROR, "no index at the end\n");
+        av_log(s, AV_LOG_WARNING, "no index at the end\n");
         return ret;
     }