[SCM] libav/experimental: Make avfilter_insert_filter() print the instance name of the auto-inserted scale filter, rather than the filter name, as this provides more information.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:57:14 UTC 2013


The following commit has been merged in the experimental branch:
commit 999c23a13aaf8b2f773d56ccafd38290fc5f7af0
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Sun Jan 10 13:45:55 2010 +0000

    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

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 41fd082..a7a009f 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)) {

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list