summaryrefslogtreecommitdiff
path: root/libavfilter/vf_amplify.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-11-21 18:34:07 +0100
committerPaul B Mahol <onemda@gmail.com>2019-11-21 18:34:07 +0100
commit55ca21d54e400ec5efc7fd28b1bce6096cbaea42 (patch)
treedad64ce8d9ecd4ef925f785baf2e09f75e5e815f /libavfilter/vf_amplify.c
parent103effebc1f10d69c311a02794c8150a90bc928c (diff)
avfilter/vf_amplify: add timeline support
Diffstat (limited to 'libavfilter/vf_amplify.c')
-rw-r--r--libavfilter/vf_amplify.c25
1 files changed, 16 insertions, 9 deletions
diff --git a/libavfilter/vf_amplify.c b/libavfilter/vf_amplify.c
index c70c44c0ae..84d9765a4c 100644
--- a/libavfilter/vf_amplify.c
+++ b/libavfilter/vf_amplify.c
@@ -259,14 +259,21 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
s->frames[s->nb_inputs - 1] = in;
}
- out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
- if (!out)
- return AVERROR(ENOMEM);
- out->pts = s->frames[0]->pts;
-
- td.out = out;
- td.in = s->frames;
- ctx->internal->execute(ctx, amplify_frame, &td, NULL, FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
+ if (!ctx->is_disabled) {
+ out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
+ if (!out)
+ return AVERROR(ENOMEM);
+ av_frame_copy_props(out, s->frames[0]);
+
+ td.out = out;
+ td.in = s->frames;
+ ctx->internal->execute(ctx, amplify_frame, &td, NULL, FFMIN(s->height[1], ff_filter_get_nb_threads(ctx)));
+ } else {
+ out = av_frame_clone(s->frames[s->radius]);
+ if (!out)
+ return AVERROR(ENOMEM);
+ out->pts = s->frames[0]->pts;
+ }
return ff_filter_frame(outlink, out);
}
@@ -316,6 +323,6 @@ AVFilter ff_vf_amplify = {
.inputs = inputs,
.init = init,
.uninit = uninit,
- .flags = AVFILTER_FLAG_SLICE_THREADS,
+ .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
.process_command = ff_filter_process_command,
};