From 12cb21efa611e6fd4dc4b9883d85a9f839aad4b7 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 17 Jan 2013 16:12:59 +0100 Subject: [PATCH] Make the latm decoder less verbose on initialisation. Reviewed-by: Paul B Mahol --- libavcodec/aacdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 947c041049..273b9725ce 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -2757,7 +2757,7 @@ static int latm_decode_audio_specific_config(struct LATMContext *latmctx, if(latmctx->initialized) { av_log(avctx, AV_LOG_INFO, "audio config changed\n"); } else { - av_log(avctx, AV_LOG_INFO, "initializing latmctx\n"); + av_log(avctx, AV_LOG_DEBUG, "initializing latmctx\n"); } latmctx->initialized = 0;