[FFmpeg-cvslog] r12704 - trunk/libavfilter/avfiltergraph.c
vitor
subversion
Fri Apr 4 22:06:54 CEST 2008
Author: vitor
Date: Fri Apr 4 22:06:54 2008
New Revision: 12704
Log:
Prefix names of filter structs
Commited in SoC by Bobby Bingham on 2007-08-18 18:17:30
Modified:
trunk/libavfilter/avfiltergraph.c
Modified: trunk/libavfilter/avfiltergraph.c
==============================================================================
--- trunk/libavfilter/avfiltergraph.c (original)
+++ trunk/libavfilter/avfiltergraph.c Fri Apr 4 22:06:54 2008
@@ -415,9 +415,9 @@ int avfilter_graph_config_links(AVFilter
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 *ct
return ret;
}
-AVFilter vf_graphfile =
+AVFilter avfilter_vf_graphfile =
{
.name = "graph_file",
.author = "Bobby Bingham",
More information about the ffmpeg-cvslog
mailing list