Commit 00d3fdd0 authored by vitor's avatar vitor

Cosmetics

Commited in SoC by Vitor Sessak on 2008-04-23 18:52:24


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13332 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 87977460
...@@ -182,12 +182,12 @@ static AVFilterInOut *extract_inout(const char *label, AVFilterInOut **links) ...@@ -182,12 +182,12 @@ static AVFilterInOut *extract_inout(const char *label, AVFilterInOut **links)
while(*links && strcmp((*links)->name, label)) while(*links && strcmp((*links)->name, label))
links= &((*links)->next); links = &((*links)->next);
ret= *links; ret = *links;
if(ret) if(ret)
*links= ret->next; *links = ret->next;
return ret; return ret;
} }
...@@ -377,17 +377,17 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, ...@@ -377,17 +377,17 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
AVFilterInOut *currInputs=NULL; AVFilterInOut *currInputs=NULL;
AVFilterInOut *openLinks = av_malloc(sizeof(AVFilterInOut)); AVFilterInOut *openLinks = av_malloc(sizeof(AVFilterInOut));
openLinks->name = "in"; openLinks->name = "in";
openLinks->filter = in; openLinks->filter = in;
openLinks->type = LinkTypeOut; openLinks->type = LinkTypeOut;
openLinks->pad_idx = inpad; openLinks->pad_idx = inpad;
openLinks->next = av_malloc(sizeof(AVFilterInOut)); openLinks->next = av_malloc(sizeof(AVFilterInOut));
openLinks->next->name = "out"; openLinks->next->name = "out";
openLinks->next->filter = out; openLinks->next->filter = out;
openLinks->next->type = LinkTypeIn; openLinks->next->type = LinkTypeIn;
openLinks->next->pad_idx = outpad; openLinks->next->pad_idx = outpad;
openLinks->next->next = NULL; openLinks->next->next = NULL;
do { do {
AVFilterContext *filter; AVFilterContext *filter;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment