Implement avfilter_graph_alloc().

Originally committed as revision 25673 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini
2010-11-04 20:34:19 +00:00
parent a6fdd5748f
commit e15aeea656
6 changed files with 16 additions and 3 deletions

View File

@@ -31,6 +31,11 @@ typedef struct AVFilterGraph {
char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
} AVFilterGraph;
/**
* Allocate a filter graph.
*/
AVFilterGraph *avfilter_graph_alloc(void);
/**
* Get a filter instance with name name from graph.
*