summaryrefslogtreecommitdiff
path: root/libavfilter/graphparser.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-01-14 20:58:47 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-01-14 20:58:47 +0000
commit3bf3fc0e5444a839a628b125d974cb5b4651f4f6 (patch)
treea4f375f1f213b8485e182dd02f70fbf0ae2270d1 /libavfilter/graphparser.c
parent6cce172f2712139784d7eef82e420332e2b42a29 (diff)
Add the word "Parsed" in the parsed filter names.
Originally committed as revision 26334 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r--libavfilter/graphparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index add3019b5c..7151e4febc 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -99,7 +99,7 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
char tmp_args[256];
int ret;
- snprintf(inst_name, sizeof(inst_name), "Filter %d %s", index, filt_name);
+ snprintf(inst_name, sizeof(inst_name), "Parsed filter %d %s", index, filt_name);
filt = avfilter_get_by_name(filt_name);