From 2a24df9357f89a9fa9d5aaeb4d2a503fa545de27 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 16 Oct 2010 10:20:53 +0000 Subject: Add avfilter_graph_config(). Originally committed as revision 25502 to svn://svn.ffmpeg.org/ffmpeg/trunk --- tools/graph2dot.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tools/graph2dot.c') diff --git a/tools/graph2dot.c b/tools/graph2dot.c index a1a68be30c..515a00342d 100644 --- a/tools/graph2dot.c +++ b/tools/graph2dot.c @@ -152,9 +152,7 @@ int main(int argc, char **argv) return 1; } - if (avfilter_graph_check_validity(graph, NULL) || - avfilter_graph_config_formats(graph, NULL) || - avfilter_graph_config_links (graph, NULL)) + if (avfilter_graph_config(graph, NULL) < 0) return 1; print_digraph(outfile, graph); -- cgit v1.2.3