Commit 652bf891 authored by vitor's avatar vitor

Split filter graphs out into their own source & header files.

Commited in SoC by Bobby Bingham on 2007-07-14 21:20:21


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12086 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent db33d95d
......@@ -225,24 +225,4 @@ void avfilter_destroy(AVFilterContext *filter);
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 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment