Browse Source

Make avfilter_insert_filter() print the instance name of the

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

Originally committed as revision 21123 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini 15 years ago
parent
commit
999c23a13a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/avfilter.c

+ 1
- 1
libavfilter/avfilter.c View File

@@ -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)) {


Loading…
Cancel
Save