Commit 4639442f authored by stefano's avatar stefano

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20372 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bcf9828b
......@@ -176,8 +176,9 @@ static void dprintf_picref(void *ctx, AVFilterPicRef *picref, int end)
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" : "");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment