[FFmpeg-cvslog] r12090 - trunk/libavfilter/avfilter.h

vitor subversion
Fri Feb 15 23:13:18 CET 2008


Author: vitor
Date: Fri Feb 15 23:13:18 2008
New Revision: 12090

Log:
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


Modified:
   trunk/libavfilter/avfilter.h

Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h	(original)
+++ trunk/libavfilter/avfilter.h	Fri Feb 15 23:13:18 2008
@@ -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;




More information about the ffmpeg-cvslog mailing list