Browse Source

avfilter/vf_xmedian: allow to control eof handling

tags/n4.4
Paul B Mahol 5 years ago
parent
commit
aea3cf4f18
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavfilter/vf_xmedian.c

+ 3
- 2
libavfilter/vf_xmedian.c View File

@@ -322,7 +322,7 @@ static int config_output(AVFilterLink *outlink)
in[i].time_base = inlink->time_base;
in[i].sync = 1;
in[i].before = EXT_STOP;
in[i].after = EXT_STOP;
in[i].after = EXT_INFINITY;
}

ret = ff_framesync_configure(&s->fs);
@@ -389,7 +389,7 @@ static const AVFilterPad outputs[] = {
};

#if CONFIG_XMEDIAN_FILTER
AVFILTER_DEFINE_CLASS(xmedian);
FRAMESYNC_DEFINE_CLASS(xmedian, XMedianContext, fs);

AVFilter ff_vf_xmedian = {
.name = "xmedian",
@@ -398,6 +398,7 @@ AVFilter ff_vf_xmedian = {
.priv_class = &xmedian_class,
.query_formats = query_formats,
.outputs = outputs,
.preinit = xmedian_framesync_preinit,
.init = init,
.uninit = uninit,
.activate = activate,


Loading…
Cancel
Save