diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-19 14:32:36 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-19 14:32:36 +0000 |
commit | dc46661ae2abc2d87426bbcb88e13530862314f2 (patch) | |
tree | 7fe341e5698ac5c71c2ff099aa0fc6646bf701af /libavfilter | |
parent | ca8574310fb87d4081820787e79405741763d7cf (diff) | |
download | ffmpeg-dc46661ae2abc2d87426bbcb88e13530862314f2.tar.gz |
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
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 4 |
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; |