Browse code

lavfi: add timeline support in {de,remove}logo.

Both don't change anything in the context between frames.

Clément Bœsch authored on 2013/04/25 03:12:59
Showing 2 changed files
... ...
@@ -269,4 +269,5 @@ AVFilter avfilter_vf_delogo = {
269 269
 
270 270
     .inputs    = avfilter_vf_delogo_inputs,
271 271
     .outputs   = avfilter_vf_delogo_outputs,
272
+    .flags     = AVFILTER_FLAG_SUPPORT_TIMELINE,
272 273
 };
... ...
@@ -578,4 +578,5 @@ AVFilter avfilter_vf_removelogo = {
578 578
     .inputs        = removelogo_inputs,
579 579
     .outputs       = removelogo_outputs,
580 580
     .priv_class    = &removelogo_class,
581
+    .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE,
581 582
 };