Merge commit 'bf5b5d2b1561535cc013c12ab8033228bb0d0081'

* commit 'bf5b5d2b1561535cc013c12ab8033228bb0d0081':
  avfilter.c: cosmetics, reformat

Conflicts:
	libavfilter/avfilter.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
pull/18/head
Michael Niedermayer 12 years ago
commit d56ced5fbf
  1. 7
      libavfilter/avfilter.c

@ -66,7 +66,8 @@ void ff_tlog_ref(void *ctx, AVFrame *ref, int end)
ff_tlog(ctx, "]%s", end ? "\n" : "");
}
unsigned avfilter_version(void) {
unsigned avfilter_version(void)
{
av_assert0(LIBAVFILTER_VERSION_MICRO >= 100);
return LIBAVFILTER_VERSION_INT;
}
@ -190,7 +191,6 @@ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
if (link->out_formats)
ff_formats_changeref(&link->out_formats,
&filt->outputs[filt_dstpad_idx]->out_formats);
if (link->out_samplerates)
ff_formats_changeref(&link->out_samplerates,
&filt->outputs[filt_dstpad_idx]->out_samplerates);
@ -493,7 +493,8 @@ int avfilter_pad_count(const AVFilterPad *pads)
if (!pads)
return 0;
for(count = 0; pads->name; count ++) pads ++;
for (count = 0; pads->name; count++)
pads++;
return count;
}

Loading…
Cancel
Save