From 7c9066a3e4f8a7ec937b1c75059c7bfd94c25321 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Fri, 15 Feb 2008 22:13:18 +0000 Subject: Make input/output pads modifiable on a per-instance basis. This makes it possible to change filter callbacks (eg. to a SIMD version on supported processors). It also allows filters to change their own input and output pads. Commited in SoC by Bobby Bingham on 2007-07-31 19:20:54 Originally committed as revision 12090 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfilter.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavfilter/avfilter.h') diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index b42f5b480c..d306e84dde 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -185,9 +185,11 @@ struct AVFilterContext char *name; unsigned input_count; + AVFilterPad *input_pads; AVFilterLink **inputs; unsigned output_count; + AVFilterPad *output_pads; AVFilterLink **outputs; void *priv; -- cgit v1.2.3