Commit 8f2db1b0 authored by stefano's avatar stefano

Make avfilter_insert_filter() print the instance name of the

auto-inserted scale filter, rather than the filter name, as this
provides more information.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21123 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6c2961ee
......@@ -105,7 +105,7 @@ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
unsigned in, unsigned out)
{
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n",
filt->filter->name);
filt->name);
link->dst->inputs[link->dstpad] = NULL;
if(avfilter_link(filt, out, link->dst, link->dstpad)) {
......
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