Commit a65acba9 authored by vitor's avatar vitor

Cosmetics: more indentation consistency

Commited in SoC by Vitor Sessak on 2008-04-23 19:24:23


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13337 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5423eeff
...@@ -95,11 +95,11 @@ static char *consume_string(const char **buf) ...@@ -95,11 +95,11 @@ static char *consume_string(const char **buf)
char c = *(*buf)++; char c = *(*buf)++;
switch (c) { switch (c) {
case '\\': case '\\':
*out++= *(*buf)++; *out++ = *(*buf)++;
break; break;
case '\'': case '\'':
while(**buf && **buf != '\'') while(**buf && **buf != '\'')
*out++= *(*buf)++; *out++ = *(*buf)++;
if(**buf) (*buf)++; if(**buf) (*buf)++;
break; break;
case 0: case 0:
...@@ -110,10 +110,10 @@ static char *consume_string(const char **buf) ...@@ -110,10 +110,10 @@ static char *consume_string(const char **buf)
case ';': case ';':
case ' ': case ' ':
case '\n': case '\n':
*out++= 0; *out++ = 0;
break; break;
default: default:
*out++= c; *out++ = c;
} }
} while(out[-1]); } while(out[-1]);
...@@ -200,7 +200,7 @@ static int link_filter_inouts(AVFilterContext *filter, ...@@ -200,7 +200,7 @@ static int link_filter_inouts(AVFilterContext *filter,
pad = filter->input_count; pad = filter->input_count;
while(pad--) { while(pad--) {
AVFilterInOut *p= *currInputs; AVFilterInOut *p = *currInputs;
*currInputs = (*currInputs)->next; *currInputs = (*currInputs)->next;
if(!p) { if(!p) {
av_log(log_ctx, AV_LOG_ERROR, av_log(log_ctx, AV_LOG_ERROR,
...@@ -371,7 +371,7 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, ...@@ -371,7 +371,7 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
char chr = 0; char chr = 0;
int pad = 0; int pad = 0;
AVFilterInOut *currInputs=NULL; AVFilterInOut *currInputs = NULL;
AVFilterInOut *openLinks = av_malloc(sizeof(AVFilterInOut)); AVFilterInOut *openLinks = av_malloc(sizeof(AVFilterInOut));
openLinks->name = "in"; openLinks->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