From 1776177b7f1ae67ad3b42d99464b141ee4082310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 9 May 2013 01:04:41 +0200 Subject: 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. --- libavfilter/vf_edgedetect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/vf_edgedetect.c') diff --git a/libavfilter/vf_edgedetect.c b/libavfilter/vf_edgedetect.c index b4698a8fe3..4c50d9f783 100644 --- a/libavfilter/vf_edgedetect.c +++ b/libavfilter/vf_edgedetect.c @@ -327,5 +327,5 @@ AVFilter avfilter_vf_edgedetect = { .inputs = edgedetect_inputs, .outputs = edgedetect_outputs, .priv_class = &edgedetect_class, - .flags = AVFILTER_FLAG_SUPPORT_TIMELINE, + .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, }; -- cgit v1.2.3