summaryrefslogtreecommitdiff
path: root/libavfilter/af_anlmdn.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-01-13 11:55:01 +0100
committerPaul B Mahol <onemda@gmail.com>2019-01-13 11:55:01 +0100
commit9217dedcd99109f5a22fe43bdde26d68542c3963 (patch)
tree5b29c2f03063c60bf1abf18e86b512ce89958154 /libavfilter/af_anlmdn.c
parent1ea5529dd260d171e8a5f88e9d09cc5a503da930 (diff)
avfilter/af_anlmdn: add timeline support
Diffstat (limited to 'libavfilter/af_anlmdn.c')
-rw-r--r--libavfilter/af_anlmdn.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavfilter/af_anlmdn.c b/libavfilter/af_anlmdn.c
index 43ceab8e4a..c637f170d2 100644
--- a/libavfilter/af_anlmdn.c
+++ b/libavfilter/af_anlmdn.c
@@ -204,7 +204,7 @@ static int filter_channel(AVFilterContext *ctx, void *arg, int ch, int nb_jobs)
s->dsp.compute_cache(cache + S, f, S, K, i, i + 1);
}
- for (int j = 0; j < 2 * S; j++) {
+ for (int j = 0; j < 2 * S && !ctx->is_disabled; j++) {
const float distance = cache[j];
unsigned weight_lut_idx;
float w;
@@ -344,5 +344,6 @@ AVFilter ff_af_anlmdn = {
.uninit = uninit,
.inputs = inputs,
.outputs = outputs,
- .flags = AVFILTER_FLAG_SLICE_THREADS,
+ .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL |
+ AVFILTER_FLAG_SLICE_THREADS,
};