From 20455a335be342873153d1b67e9604e3b011eb8d Mon Sep 17 00:00:00 2001
From: Benjamin Larsson <banan@ludd.ltu.se>
Date: Wed, 23 Jul 2008 12:21:56 +0000
Subject: [PATCH] Reduce the loglevel on a log message in the Nellymoser
 decoder. Related to Roundup 447.

Originally committed as revision 14348 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/nellymoserdec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index c177f60ca95..8045e4b8d0e 100644
--- a/libavcodec/nellymoserdec.c
+++ b/libavcodec/nellymoserdec.c
@@ -174,7 +174,7 @@ static int decode_tag(AVCodecContext * avctx,
         case 512:   // 44100Hz
             blocks = 8; break;
         default:
-            av_log(avctx, AV_LOG_ERROR, "Tag size %d unknown, report sample!\n", buf_size);
+            av_log(avctx, AV_LOG_DEBUG, "Tag size %d.\n", buf_size);
             return buf_size;
     }
 
-- 
GitLab