diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-17 16:12:59 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-17 16:12:59 +0100 |
commit | 12cb21efa611e6fd4dc4b9883d85a9f839aad4b7 (patch) | |
tree | 51d9da8ec94291944732437ccc59dbe3bf249a88 | |
parent | 46730e7a0c1a934be05def268b992239b94269c3 (diff) | |
download | ffmpeg-12cb21efa611e6fd4dc4b9883d85a9f839aad4b7.tar.gz |
Make the latm decoder less verbose on initialisation.
Reviewed-by: Paul B Mahol
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |