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

stefano subversion
Sun Oct 25 22:06:01 CET 2009


Author: stefano
Date: Sun Oct 25 22:06:00 2009
New Revision: 20372

Log:
Make dprintf_link() show the name of the link pixel format.

Modified:
   trunk/libavfilter/avfilter.c

Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c	Sun Oct 25 04:09:53 2009	(r20371)
+++ trunk/libavfilter/avfilter.c	Sun Oct 25 22:06:00 2009	(r20372)
@@ -176,8 +176,9 @@ static void dprintf_picref(void *ctx, AV
 static void dprintf_link(void *ctx, AVFilterLink *link, int end)
 {
     dprintf(ctx,
-            "link[%p s:%dx%d %-16s->%-16s]%s",
+            "link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s",
             link, link->w, link->h,
+            avcodec_get_pix_fmt_name(link->format),
             link->src ? link->src->filter->name : "",
             link->dst ? link->dst->filter->name : "",
             end ? "\n" : "");



More information about the ffmpeg-cvslog mailing list