diff options
author | Paul B Mahol <onemda@gmail.com> | 2021-01-25 00:38:41 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2021-01-25 00:47:06 +0100 |
commit | d7c4dc2f1ac174cb504af31d5f102181b4aea0b5 (patch) | |
tree | 3c1283ad9d09309edcebc4c7710d58856773d74d | |
parent | e41a92910ad3b2efcb56e1c27f644f99d8ce2a4f (diff) | |
download | ffmpeg-d7c4dc2f1ac174cb504af31d5f102181b4aea0b5.tar.gz |
avfilter/vf_lenscorrection: add timeline support
-rw-r--r-- | libavfilter/vf_lenscorrection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lenscorrection.c b/libavfilter/vf_lenscorrection.c index 2baf0fb400..8b5e950c16 100644 --- a/libavfilter/vf_lenscorrection.c +++ b/libavfilter/vf_lenscorrection.c @@ -292,5 +292,5 @@ AVFilter ff_vf_lenscorrection = { .outputs = lenscorrection_outputs, .priv_class = &lenscorrection_class, .uninit = uninit, - .flags = AVFILTER_FLAG_SLICE_THREADS, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS, }; |