Browse Source

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
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
ba6b903510
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/avfilter.c

+ 2
- 2
libavfilter/avfilter.c View File

@@ -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…
Cancel
Save