From dc46661ae2abc2d87426bbcb88e13530862314f2 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 19 Aug 2010 14:32:36 +0000 Subject: [PATCH] Enable and change the log level to DEBUG for the message printed in case of picref copy. Originally committed as revision 24831 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfilter.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index cda683313b..a9a361cd25 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -296,12 +296,10 @@ void avfilter_start_frame(AVFilterLink *link, AVFilterBufferRef *picref) /* prepare to copy the picture if it has insufficient permissions */ if ((dst->min_perms & picref->perms) != dst->min_perms || dst->rej_perms & picref->perms) { - /* - av_log(link->dst, AV_LOG_INFO, + av_log(link->dst, AV_LOG_DEBUG, "frame copy needed (have perms %x, need %x, reject %x)\n", picref->perms, link_dpad(link).min_perms, link_dpad(link).rej_perms); - */ link->cur_buf = avfilter_default_get_video_buffer(link, dst->min_perms, link->w, link->h); link->src_buf = picref;