diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-25 19:37:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-25 19:37:37 +0200 |
commit | 59360cd456dd038fb28134aff5d9b56302fff488 (patch) | |
tree | 416cbcc0862b82f82f706ee7ddb80e771dda8202 | |
parent | 1350a5c4d566b5c9d96eeaf2e40e183dbd098b16 (diff) | |
download | ffmpeg-59360cd456dd038fb28134aff5d9b56302fff488.tar.gz |
tools/graph2dot: fix use of deprecated *put_count
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | tools/graph2dot.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |