From: Dan Dennedy Date: Thu, 11 Feb 2010 07:49:26 +0000 (-0800) Subject: Make avformat producer less chatty in verbose mode. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=998e5646206b51b06b48f1b45841e12889035c0b;p=mlt Make avformat producer less chatty in verbose mode. --- diff --git a/src/modules/avformat/producer_avformat.c b/src/modules/avformat/producer_avformat.c index b886f483..790e8b9c 100644 --- a/src/modules/avformat/producer_avformat.c +++ b/src/modules/avformat/producer_avformat.c @@ -1149,7 +1149,7 @@ static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_form else if ( context->start_time != AV_NOPTS_VALUE ) pts -= context->start_time; int_position = ( int )( av_q2d( stream->time_base) * pts * source_fps + 0.1 ); - mlt_log_verbose( MLT_PRODUCER_SERVICE(producer), "got frame %d, key %d\n", int_position, this->av_frame->key_frame ); + mlt_log_debug( MLT_PRODUCER_SERVICE(producer), "got frame %d, key %d\n", int_position, this->av_frame->key_frame ); } // Handle ignore if ( int_position < req_position )