diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-24 20:12:59 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-24 20:13:01 +0200 |
commit | 73050df2402cbe09f490145991442dd2baa83ec7 (patch) | |
tree | 5a08fbb357e600e75f81244983f6421841e373e6 | |
parent | 1f6aa7de3ecc16275c0197673e36807f7ea10055 (diff) | |
download | ffmpeg-73050df2402cbe09f490145991442dd2baa83ec7.tar.gz |
lavfi: add timeline support in {de,remove}logo.
Both don't change anything in the context between frames.
-rw-r--r-- | libavfilter/vf_delogo.c | 1 | ||||
-rw-r--r-- | libavfilter/vf_removelogo.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_delogo.c index 4808cf368b..c747b0259f 100644 --- a/libavfilter/vf_delogo.c +++ b/libavfilter/vf_delogo.c @@ -269,4 +269,5 @@ AVFilter avfilter_vf_delogo = { .inputs = avfilter_vf_delogo_inputs, .outputs = avfilter_vf_delogo_outputs, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE, }; diff --git a/libavfilter/vf_removelogo.c b/libavfilter/vf_removelogo.c index c5bbff9c5a..dfc75d1b27 100644 --- a/libavfilter/vf_removelogo.c +++ b/libavfilter/vf_removelogo.c @@ -578,4 +578,5 @@ AVFilter avfilter_vf_removelogo = { .inputs = removelogo_inputs, .outputs = removelogo_outputs, .priv_class = &removelogo_class, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE, }; |