[FFmpeg-soc] [soc]: r2157 - libavfilter/graphparser.c
vitor
subversion at mplayerhq.hu
Wed Apr 23 20:52:24 CEST 2008
Author: vitor
Date: Wed Apr 23 20:52:24 2008
New Revision: 2157
Log:
Cosmetics
Modified:
libavfilter/graphparser.c
Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c (original)
+++ libavfilter/graphparser.c Wed Apr 23 20:52:24 2008
@@ -182,12 +182,12 @@ static AVFilterInOut *extract_inout(cons
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 *
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;
More information about the FFmpeg-soc
mailing list