lavfi: replace passthrough_filter_frame with a flag.

With the introduction of AVFilterContext->is_disabled, we can simplify
the custom passthrough mode in filters.

This commit is technically a small compat break, but the timeline was
introduced very recently.

Doxy by Stefano Sabatini.
This commit is contained in:
Clément Bœsch
2013-05-09 01:04:41 +02:00
parent 60f0e30431
commit 1776177b7f
25 changed files with 52 additions and 61 deletions

View File

@@ -578,5 +578,5 @@ AVFilter avfilter_vf_removelogo = {
.inputs = removelogo_inputs,
.outputs = removelogo_outputs,
.priv_class = &removelogo_class,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
};