From 6ea144646672056b4c225f8f11e78f3b2eadb77f Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Fri, 4 Apr 2008 20:06:54 +0000 Subject: Prefix names of filter structs Commited in SoC by Bobby Bingham on 2007-08-18 18:17:30 Originally committed as revision 12704 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfiltergraph.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libavfilter/avfiltergraph.c') diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 77da5f01c1..8c16bc5d39 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -415,9 +415,9 @@ int avfilter_graph_config_links(AVFilterContext *graphctx) for(i = 0; i < graph->filter_count; i ++) { for(j = 0; j < graph->filters[i]->input_count; j ++) { /* ensure that graphs contained within graphs are configured */ - if((graph->filters[i]->filter == &vf_graph || - graph->filters[i]->filter == &vf_graphfile || - graph->filters[i]->filter == &vf_graphdesc) && + if((graph->filters[i]->filter == &avfilter_vf_graph || + graph->filters[i]->filter == &avfilter_vf_graphfile || + graph->filters[i]->filter == &avfilter_vf_graphdesc) && avfilter_graph_config_links(graph->filters[i])) return -1; if(avfilter_config_link(graph->filters[i]->inputs[j])) @@ -559,7 +559,7 @@ fail: return -1; } -AVFilter vf_graph = +AVFilter avfilter_vf_graph = { .name = "graph", .author = "Bobby Bingham", @@ -656,7 +656,7 @@ fail: return -1; } -AVFilter vf_graphdesc = +AVFilter avfilter_vf_graphdesc = { .name = "graph_desc", .author = "Bobby Bingham", @@ -685,7 +685,7 @@ static int init_file(AVFilterContext *ctx, const char *args, void *opaque) return ret; } -AVFilter vf_graphfile = +AVFilter avfilter_vf_graphfile = { .name = "graph_file", .author = "Bobby Bingham", -- cgit v1.2.3