summaryrefslogtreecommitdiff
path: root/libavfilter/graphparser.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:42:00 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:42:00 +0000
commit089d3714502f8e1ee25e66f3ac3d2e421f6965a1 (patch)
treeba80e382712fcefb7bf588016371b14f8c1eabf1 /libavfilter/graphparser.c
parent12849837d4fbd82afb78358fe73c99882f1ade8f (diff)
These error messages should print the filter name, not the instance name
Commited in SoC by Vitor Sessak on 2008-05-24 13:08:23 Originally committed as revision 13349 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r--libavfilter/graphparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index ad1c5fa609..624b098b90 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -211,7 +211,7 @@ static int link_filter_inouts(AVFilterContext *filter,
if(!p) {
av_log(log_ctx, AV_LOG_ERROR,
"Not enough inputs specified for the \"%s\" filter.\n",
- filter->name);
+ filter->filter->name);
return -1;
}
@@ -231,7 +231,7 @@ static int link_filter_inouts(AVFilterContext *filter,
if(*currInputs) {
av_log(log_ctx, AV_LOG_ERROR,
"Too many inputs specified for the \"%s\" filter.\n",
- filter->name);
+ filter->filter->name);
return -1;
}