From 0005a746529a34285267d8ca44d98422769786db Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 10 Jun 2015 14:41:12 -0500 Subject: [PATCH] lower debug message level --- src/mod/applications/mod_av/avcodec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/applications/mod_av/avcodec.c b/src/mod/applications/mod_av/avcodec.c index 8b80d48d0b..f2b62a1eee 100644 --- a/src/mod/applications/mod_av/avcodec.c +++ b/src/mod/applications/mod_av/avcodec.c @@ -450,7 +450,7 @@ static switch_status_t switch_h264_encode(switch_codec_t *codec, switch_frame_t } if (avctx->width != width || avctx->height != height) { - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "picture size changed from %dx%d to %dx%d, reinitializing encoder\n", + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "picture size changed from %dx%d to %dx%d, reinitializing encoder\n", avctx->width, avctx->height, width, height); if (open_encoder(context, width, height) != SWITCH_STATUS_SUCCESS) { goto error; @@ -521,7 +521,7 @@ static switch_status_t switch_h264_encode(switch_codec_t *codec, switch_frame_t //avframe->pts = context->pts++; if (context->need_key_frame) { - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Send AV KEYFRAME\n"); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Send AV KEYFRAME\n"); av_opt_set_int(context->encoder_ctx->priv_data, "intra-refresh", 1, 0); avframe->pict_type = AV_PICTURE_TYPE_I; }