[SCM] libav/experimental: use filter name when graph parser add filters

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:07:13 UTC 2013


The following commit has been merged in the experimental branch:
commit 03c3bb5c5acaa6a498feb11bb101f086a3cf38ca
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Sun May 16 18:13:55 2010 +0000

    use filter name when graph parser add filters
    
    Originally committed as revision 23147 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index c4a3bdf..3fe8524 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -82,7 +82,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
     AVFilter *filt;
     char inst_name[30];
 
-    snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index);
+    snprintf(inst_name, sizeof(inst_name), "Filter %d %s", index, filt_name);
 
     filt = avfilter_get_by_name(filt_name);
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list