summaryrefslogtreecommitdiff
path: root/libavfilter/vf_xmedian.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-12-30 15:33:50 +0100
committerPaul B Mahol <onemda@gmail.com>2020-12-30 15:53:22 +0100
commit9ac31b419cb35e755a59675479ba6207cf666c89 (patch)
tree3af68fd3eedcf8d6802960044ef5af1b47e34335 /libavfilter/vf_xmedian.c
parentc720286ee3bf59420e6f6ddd1f999f2f327c8967 (diff)
avfilter/vf_xmedian: add timeline support
Diffstat (limited to 'libavfilter/vf_xmedian.c')
-rw-r--r--libavfilter/vf_xmedian.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/libavfilter/vf_xmedian.c b/libavfilter/vf_xmedian.c
index 0c4d4ab047..7794f8cb43 100644
--- a/libavfilter/vf_xmedian.c
+++ b/libavfilter/vf_xmedian.c
@@ -244,14 +244,20 @@ static int process_frame(FFFrameSync *fs)
return ret;
}
- out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
+ if (ctx->is_disabled) {
+ out = av_frame_clone(in[0]);
+ } else {
+ out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
+ }
if (!out)
return AVERROR(ENOMEM);
out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
- td.in = in;
- td.out = out;
- ctx->internal->execute(ctx, s->median_frames, &td, NULL, FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
+ if (!ctx->is_disabled) {
+ td.in = in;
+ td.out = out;
+ ctx->internal->execute(ctx, s->median_frames, &td, NULL, FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
+ }
return ff_filter_frame(outlink, out);
}
@@ -395,7 +401,8 @@ AVFilter ff_vf_xmedian = {
.init = init,
.uninit = uninit,
.activate = activate,
- .flags = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_SLICE_THREADS,
+ .flags = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_SLICE_THREADS |
+ AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
.process_command = process_command,
};