[FFmpeg-cvslog] r13311 - trunk/libavfilter/graphparser.c
vitor
subversion
Sat May 24 22:40:04 CEST 2008
Author: vitor
Date: Sat May 24 22:40:03 2008
New Revision: 13311
Log:
Cosmetics: if(x != NULL) -> if(x)
Commited in SoC by Vitor Sessak on 2008-04-12 14:11:19
Modified:
trunk/libavfilter/graphparser.c
Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c (original)
+++ trunk/libavfilter/graphparser.c Sat May 24 22:40:03 2008
@@ -307,8 +307,8 @@ int avfilter_parse_graph(AVFilterGraph *
} while (chr == ',' || chr == ';');
head = inout;
- for (; inout != NULL; inout = inout->next) {
- if(inout->filter == NULL)
+ for (; inout; inout = inout->next) {
+ if(!inout->filter)
continue; // Already processed
if(!strcmp(inout->name, "in")) {
More information about the ffmpeg-cvslog
mailing list