From 59360cd456dd038fb28134aff5d9b56302fff488 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 25 Aug 2013 19:37:37 +0200 Subject: [PATCH] tools/graph2dot: fix use of deprecated *put_count Signed-off-by: Michael Niedermayer --- tools/graph2dot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/graph2dot.c b/tools/graph2dot.c index 2daceb6152..964322d080 100644 --- a/tools/graph2dot.c +++ b/tools/graph2dot.c @@ -66,7 +66,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph) filter_ctx->name, filter_ctx->filter->name); - for (j = 0; j < filter_ctx->output_count; j++) { + for (j = 0; j < filter_ctx->nb_outputs; j++) { AVFilterLink *link = filter_ctx->outputs[j]; if (link) { char dst_filter_ctx_label[128];