diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-10 13:45:55 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-10 13:45:55 +0000 |
commit | 999c23a13aaf8b2f773d56ccafd38290fc5f7af0 (patch) | |
tree | fdaece50ebc3225fbde972add37d4eaf872a06da | |
parent | 2d187e230251ae9e05d485e32f1103c192008fb4 (diff) | |
download | ffmpeg-999c23a13aaf8b2f773d56ccafd38290fc5f7af0.tar.gz |
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
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 41fd0827bc..a7a009f085 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -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)) { |