From e2b5fdaf11e59f295608ed74dc8c422af7a21147 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 24 May 2008 20:42:34 +0000 Subject: Split openLinks linked list into openInputs and openOutputs Commited in SoC by Vitor Sessak on 2008-05-24 17:20:09 Originally committed as revision 13360 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/graphparser.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'libavfilter/graphparser.h') diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h index d42c8d00d1..dcf478bf45 100644 --- a/libavfilter/graphparser.h +++ b/libavfilter/graphparser.h @@ -25,16 +25,10 @@ #include "avfilter.h" #include "avfiltergraph.h" -enum LinkType { - LinkTypeIn, - LinkTypeOut, -}; - /** * A linked-list of the inputs/outputs of the filter chain. */ typedef struct AVFilterInOut { - enum LinkType type; const char *name; AVFilterContext *filter; int pad_idx; @@ -51,6 +45,7 @@ typedef struct AVFilterInOut { * @return zero on success, -1 on error */ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, - AVFilterInOut *inouts, AVClass *log_ctx); + AVFilterInOut *inputs, AVFilterInOut *outputs, + AVClass *log_ctx); #endif /* FFMPEG_GRAPHPARSER_H */ -- cgit v1.2.3