mirror of https://git.ffmpeg.org/ffmpeg.git
Cosmetics: if(x != NULL) -> if(x)
Commited in SoC by Vitor Sessak on 2008-04-12 14:11:19 Originally committed as revision 13311 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8095a014a0
commit
a59a773413
|
@ -307,8 +307,8 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
|
||||||
} while (chr == ',' || chr == ';');
|
} while (chr == ',' || chr == ';');
|
||||||
|
|
||||||
head = inout;
|
head = inout;
|
||||||
for (; inout != NULL; inout = inout->next) {
|
for (; inout; inout = inout->next) {
|
||||||
if(inout->filter == NULL)
|
if(!inout->filter)
|
||||||
continue; // Already processed
|
continue; // Already processed
|
||||||
|
|
||||||
if(!strcmp(inout->name, "in")) {
|
if(!strcmp(inout->name, "in")) {
|
||||||
|
|
Loading…
Reference in New Issue