[FFmpeg-cvslog] r12085 - trunk/libavfilter/avfilter.h
vitor
subversion
Fri Feb 15 23:13:00 CET 2008
Author: vitor
Date: Fri Feb 15 23:12:59 2008
New Revision: 12085
Log:
Add a simple filter graph structure and functions
Commited in SoC by Bobby Bingham on 2007-07-14 20:12:54
Modified:
trunk/libavfilter/avfilter.h
Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h (original)
+++ trunk/libavfilter/avfilter.h Fri Feb 15 23:12:59 2008
@@ -225,4 +225,24 @@ void avfilter_destroy(AVFilterContext *f
int *avfilter_make_format_list(int len, ...);
+typedef struct AVFilterGraph AVFilterGraph;
+
+/**
+ * Create a new filter graph
+ */
+AVFilterGraph *avfilter_create_graph(void);
+
+/**
+ * Destroy a filter graph, and any filters in it.
+ * @param graph The filter graph to destroy
+ */
+void avfilter_destroy_graph(AVFilterGraph *graph);
+
+/**
+ * Add an existing filter instance to a filter graph.
+ * @param graph The filter graph
+ * @param filter The filter to be added
+ */
+void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter);
+
#endif /* FFMPEG_AVFILTER_H */
More information about the ffmpeg-cvslog
mailing list