summaryrefslogtreecommitdiff
path: root/libavfilter/graphparser.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:41:11 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:41:11 +0000
commitf6557d5e33d3668312c209c3015e18db0cd21271 (patch)
treececddaab4f0ca4a27ec62a0ca51f94176c25a06c /libavfilter/graphparser.c
parent443c10ef2b524d39eda354546e74c83e3effe6e7 (diff)
Cosmetics
Commited in SoC by Vitor Sessak on 2008-04-23 18:52:24 Originally committed as revision 13332 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r--libavfilter/graphparser.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index cc1f7b05fc..6865ccd89e 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -182,12 +182,12 @@ static AVFilterInOut *extract_inout(const char *label, AVFilterInOut **links)
while(*links && strcmp((*links)->name, label))
- links= &((*links)->next);
+ links = &((*links)->next);
- ret= *links;
+ ret = *links;
if(ret)
- *links= ret->next;
+ *links = ret->next;
return ret;
}
@@ -377,17 +377,17 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
AVFilterInOut *currInputs=NULL;
AVFilterInOut *openLinks = av_malloc(sizeof(AVFilterInOut));
- openLinks->name = "in";
- openLinks->filter = in;
- openLinks->type = LinkTypeOut;
+ openLinks->name = "in";
+ openLinks->filter = in;
+ openLinks->type = LinkTypeOut;
openLinks->pad_idx = inpad;
- openLinks->next = av_malloc(sizeof(AVFilterInOut));
+ openLinks->next = av_malloc(sizeof(AVFilterInOut));
- openLinks->next->name = "out";
- openLinks->next->filter = out;
- openLinks->next->type = LinkTypeIn;
+ openLinks->next->name = "out";
+ openLinks->next->filter = out;
+ openLinks->next->type = LinkTypeIn;
openLinks->next->pad_idx = outpad;
- openLinks->next->next = NULL;
+ openLinks->next->next = NULL;
do {
AVFilterContext *filter;