Browse code

tools/graph2dot: fix use of deprecated *put_count

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2013/08/26 02:37:37
Showing 1 changed files
... ...
@@ -66,7 +66,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
66 66
                  filter_ctx->name,
67 67
                  filter_ctx->filter->name);
68 68
 
69
-        for (j = 0; j < filter_ctx->output_count; j++) {
69
+        for (j = 0; j < filter_ctx->nb_outputs; j++) {
70 70
             AVFilterLink *link = filter_ctx->outputs[j];
71 71
             if (link) {
72 72
                 char dst_filter_ctx_label[128];