From 4ec42240cad351bbd8ca619dd0f38064eeec29dd Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 31 May 2009 16:30:12 +0000 Subject: Implement avfilter_graph_config_links(). Originally committed as revision 19066 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfiltergraph.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libavfilter/avfiltergraph.h') diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index fdae73c564..c78d53f0a3 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -56,6 +56,13 @@ int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter); */ int avfilter_graph_check_validity(AVFilterGraph *graphctx, AVClass *log_ctx); +/** + * Configures all the links of graphctx. + * + * @return 0 in case of success, a negative value otherwise + */ +int avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx); + /** * Configures the formats of all the links in the graph. */ -- cgit v1.2.3