summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-19 14:32:36 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-19 14:32:36 +0000
commitdc46661ae2abc2d87426bbcb88e13530862314f2 (patch)
tree7fe341e5698ac5c71c2ff099aa0fc6646bf701af
parentca8574310fb87d4081820787e79405741763d7cf (diff)
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
-rw-r--r--libavfilter/avfilter.c4
1 files changed, 1 insertions, 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;