[FFmpeg-cvslog] r24831 - trunk/libavfilter/avfilter.c

stefano subversion
Thu Aug 19 16:32:36 CEST 2010


Author: stefano
Date: Thu Aug 19 16:32:36 2010
New Revision: 24831

Log:
Enable and change the log level to DEBUG for the message printed in
case of picref copy.

Modified:
   trunk/libavfilter/avfilter.c

Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c	Thu Aug 19 16:32:31 2010	(r24830)
+++ trunk/libavfilter/avfilter.c	Thu Aug 19 16:32:36 2010	(r24831)
@@ -296,12 +296,10 @@ void avfilter_start_frame(AVFilterLink *
     /* 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;



More information about the ffmpeg-cvslog mailing list