Commit ba6b9035 authored by Vitor Sessak's avatar Vitor Sessak

cosmetic: more vertical alignment

Commited in SoC by Bobby Bingham on 2007-07-05 21:39:33

Originally committed as revision 11975 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e0752603
...@@ -108,7 +108,7 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad, ...@@ -108,7 +108,7 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad,
/* find a format both filters support - TODO: auto-insert conversion filter */ /* find a format both filters support - TODO: auto-insert conversion filter */
fmts[0] = src->filter->outputs[srcpad].query_formats(link); fmts[0] = src->filter->outputs[srcpad].query_formats(link);
fmts[1] = dst->filter->inputs[dstpad].query_formats(link); fmts[1] = dst->filter-> inputs[dstpad].query_formats(link);
for(i = 0; fmts[0][i] != -1; i ++) for(i = 0; fmts[0][i] != -1; i ++)
for(j = 0; fmts[1][j] != -1; j ++) for(j = 0; fmts[1][j] != -1; j ++)
if(fmts[0][i] == fmts[1][j]) { if(fmts[0][i] == fmts[1][j]) {
...@@ -128,7 +128,7 @@ format_done: ...@@ -128,7 +128,7 @@ format_done:
} }
src->filter->outputs[srcpad].config_props(link); src->filter->outputs[srcpad].config_props(link);
dst->filter->inputs[dstpad].config_props(link); dst->filter-> inputs[dstpad].config_props(link);
return 0; return 0;
} }
......
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