comparison mlpdec.c @ 11028:919fb8b71591 libavcodec

Reduce log level of "Extracting .. channel downmix" to AV_LOG_DEBUG, the message is pointless to ordinary users and is printed once per frame.
author reimar
date Wed, 27 Jan 2010 20:02:18 +0000
parents 9aae10c862f7
children 8a4984c5cacc
comparison
equal deleted inserted replaced
11027:9b5939c66874 11028:919fb8b71591
395 } 395 }
396 396
397 if (m->avctx->request_channels > 0 397 if (m->avctx->request_channels > 0
398 && s->max_channel + 1 >= m->avctx->request_channels 398 && s->max_channel + 1 >= m->avctx->request_channels
399 && substr < m->max_decoded_substream) { 399 && substr < m->max_decoded_substream) {
400 av_log(m->avctx, AV_LOG_INFO, 400 av_log(m->avctx, AV_LOG_DEBUG,
401 "Extracting %d channel downmix from substream %d. " 401 "Extracting %d channel downmix from substream %d. "
402 "Further substreams will be skipped.\n", 402 "Further substreams will be skipped.\n",
403 s->max_channel + 1, substr); 403 s->max_channel + 1, substr);
404 m->max_decoded_substream = substr; 404 m->max_decoded_substream = substr;
405 } 405 }