summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.h
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-04-04 20:08:56 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-04-04 20:08:56 +0000
commit9f39bb37e4740891665e5b12985efbb1287b2451 (patch)
tree93c4106b88d50421d7c5e0404876815a5aad69ff /libavfilter/avfiltergraph.h
parent5c2ff9fd4604ea7ad308a0c98a654b30ecd1929d (diff)
Rename variable GraphContext -> AVFilterGraph
Commited in SoC by Vitor Sessak on 2008-03-26 20:31:53 Originally committed as revision 12736 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r--libavfilter/avfiltergraph.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h
index 4e3497e369..08d25b797a 100644
--- a/libavfilter/avfiltergraph.h
+++ b/libavfilter/avfiltergraph.h
@@ -69,7 +69,7 @@ typedef struct
typedef struct AVFilterGraph {
unsigned filter_count;
AVFilterContext **filters;
-} GraphContext;
+} AVFilterGraph;
/**
* Parse a graph composed of a simple chain of filters which is described by
@@ -90,20 +90,20 @@ void avfilter_graph_free_desc(AVFilterGraphDesc *desc);
* @param graph The filter graph
* @param filter The filter to be added
*/
-void avfilter_graph_add_filter(GraphContext *graphctx, AVFilterContext *filter);
+void avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
/**
* Configure the formats of all the links in the graph.
*/
-int avfilter_graph_config_formats(GraphContext *graphctx);
+int avfilter_graph_config_formats(AVFilterGraph *graphctx);
/**
* Configure the parameters (resolution, etc) of all links in the graph.
*/
-int avfilter_graph_config_links(GraphContext *graphctx);
+int avfilter_graph_config_links(AVFilterGraph *graphctx);
-int graph_load_from_desc3(GraphContext *ctx, AVFilterGraphDesc *desc,
+int graph_load_from_desc3(AVFilterGraph *ctx, AVFilterGraphDesc *desc,
AVFilterContext *in, int inpad,
AVFilterContext *out, int outpad);