Commit 59360cd4 authored by Michael Niedermayer's avatar Michael Niedermayer

tools/graph2dot: fix use of deprecated *put_count

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1350a5c4
......@@ -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];
......
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