Commit 2af156ed authored by vitor's avatar vitor

Cosmetics: if(x != NULL) -> if(x)

Commited in SoC by Vitor Sessak on 2008-04-12 14:11:19


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13311 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 17247593
...@@ -307,8 +307,8 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, ...@@ -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")) {
......
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