mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 16:22:37 +00:00
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
This commit is contained in:
parent
e0752603a1
commit
ba6b903510
@ -108,7 +108,7 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad,
|
||||
|
||||
/* find a format both filters support - TODO: auto-insert conversion filter */
|
||||
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(j = 0; fmts[1][j] != -1; j ++)
|
||||
if(fmts[0][i] == fmts[1][j]) {
|
||||
@ -128,7 +128,7 @@ format_done:
|
||||
}
|
||||
|
||||
src->filter->outputs[srcpad].config_props(link);
|
||||
dst->filter->inputs[dstpad].config_props(link);
|
||||
dst->filter-> inputs[dstpad].config_props(link);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user