diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:41:25 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:41:25 +0000 |
commit | d835680e3c6aeee8998083b5d5462cf6f5308d70 (patch) | |
tree | 87b9def4cc76cc37a519976d2859daef799bb6b3 /libavfilter | |
parent | 487c0e67005e3a6c8a87cae1bd9d453e97f528a4 (diff) | |
download | ffmpeg-d835680e3c6aeee8998083b5d5462cf6f5308d70.tar.gz |
Cosmetics: more indentation consistency
Commited in SoC by Vitor Sessak on 2008-04-23 19:24:23
Originally committed as revision 13337 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/graphparser.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 5a456a01c5..436d287b8d 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -95,11 +95,11 @@ static char *consume_string(const char **buf) char c = *(*buf)++; switch (c) { case '\\': - *out++= *(*buf)++; + *out++ = *(*buf)++; break; case '\'': while(**buf && **buf != '\'') - *out++= *(*buf)++; + *out++ = *(*buf)++; if(**buf) (*buf)++; break; case 0: @@ -110,10 +110,10 @@ static char *consume_string(const char **buf) case ';': case ' ': case '\n': - *out++= 0; + *out++ = 0; break; default: - *out++= c; + *out++ = c; } } while(out[-1]); @@ -200,7 +200,7 @@ static int link_filter_inouts(AVFilterContext *filter, pad = filter->input_count; while(pad--) { - AVFilterInOut *p= *currInputs; + AVFilterInOut *p = *currInputs; *currInputs = (*currInputs)->next; if(!p) { av_log(log_ctx, AV_LOG_ERROR, @@ -371,7 +371,7 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, char chr = 0; int pad = 0; - AVFilterInOut *currInputs=NULL; + AVFilterInOut *currInputs = NULL; AVFilterInOut *openLinks = av_malloc(sizeof(AVFilterInOut)); openLinks->name = "in"; |