diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:08:56 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:08:56 +0000 |
commit | 9f39bb37e4740891665e5b12985efbb1287b2451 (patch) | |
tree | 93c4106b88d50421d7c5e0404876815a5aad69ff /libavfilter/avfiltergraph.c | |
parent | 5c2ff9fd4604ea7ad308a0c98a654b30ecd1929d (diff) | |
download | ffmpeg-9f39bb37e4740891665e5b12985efbb1287b2451.tar.gz |
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.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index c545eda933..99e1b7051f 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -41,7 +41,7 @@ static const AVClass filter_parser_class = { static const AVClass *log_ctx = &filter_parser_class; -static void uninit(GraphContext *graph) +static void uninit(AVFilterGraph *graph) { for(; graph->filter_count > 0; graph->filter_count --) avfilter_destroy(graph->filters[graph->filter_count - 1]); @@ -49,7 +49,7 @@ static void uninit(GraphContext *graph) } /* TODO: insert in sorted order */ -void avfilter_graph_add_filter(GraphContext *graph, AVFilterContext *filter) +void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter) { graph->filters = av_realloc(graph->filters, sizeof(AVFilterContext*) * ++graph->filter_count); @@ -57,7 +57,7 @@ void avfilter_graph_add_filter(GraphContext *graph, AVFilterContext *filter) } /* search intelligently, once we insert in order */ -AVFilterContext *avfilter_graph_get_filter(GraphContext *graph, char *name) +AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name) { int i; @@ -71,7 +71,7 @@ AVFilterContext *avfilter_graph_get_filter(GraphContext *graph, char *name) return NULL; } -static int query_formats(GraphContext *graph) +static int query_formats(AVFilterGraph *graph) { int i, j; @@ -133,7 +133,7 @@ static void pick_format(AVFilterLink *link) avfilter_formats_unref(&link->out_formats); } -static void pick_formats(GraphContext *graph) +static void pick_formats(AVFilterGraph *graph) { int i, j; @@ -147,7 +147,7 @@ static void pick_formats(GraphContext *graph) } } -int avfilter_graph_config_formats(GraphContext *graph) +int avfilter_graph_config_formats(AVFilterGraph *graph) { /* find supported formats from sub-filters, and merge along links */ if(query_formats(graph)) @@ -160,7 +160,7 @@ int avfilter_graph_config_formats(GraphContext *graph) return 0; } -static int graph_load_from_desc2(GraphContext *ctx, AVFilterGraphDesc *desc) +static int graph_load_from_desc2(AVFilterGraph *ctx, AVFilterGraphDesc *desc) { AVFilterGraphDescFilter *curfilt; AVFilterGraphDescLink *curlink; @@ -211,7 +211,7 @@ fail: return -1; } -int graph_load_from_desc3(GraphContext *graph, AVFilterGraphDesc *desc, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad) +int graph_load_from_desc3(AVFilterGraph *graph, AVFilterGraphDesc *desc, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad) { AVFilterGraphDescExport *curpad; char tmp[20]; |