1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

Make the latm decoder less verbose on initialisation.

Reviewed-by: Paul B Mahol
This commit is contained in:
Carl Eugen Hoyos
2013-01-17 16:12:59 +01:00
parent 46730e7a0c
commit 12cb21efa6

View File

@@ -2757,7 +2757,7 @@ static int latm_decode_audio_specific_config(struct LATMContext *latmctx,
if(latmctx->initialized) { if(latmctx->initialized) {
av_log(avctx, AV_LOG_INFO, "audio config changed\n"); av_log(avctx, AV_LOG_INFO, "audio config changed\n");
} else { } else {
av_log(avctx, AV_LOG_INFO, "initializing latmctx\n"); av_log(avctx, AV_LOG_DEBUG, "initializing latmctx\n");
} }
latmctx->initialized = 0; latmctx->initialized = 0;