summaryrefslogtreecommitdiff
path: root/libavfilter/graphparser.h
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:42:34 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:42:34 +0000
commite2b5fdaf11e59f295608ed74dc8c422af7a21147 (patch)
tree7810cb89d1e708f6bc6856daba9c764c213efcca /libavfilter/graphparser.h
parent64fbf5e263a0698c6cf6e0580feebe9a6f502ae5 (diff)
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
Diffstat (limited to 'libavfilter/graphparser.h')
-rw-r--r--libavfilter/graphparser.h9
1 files changed, 2 insertions, 7 deletions
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 */