[FFmpeg-cvslog] tools/graph2dot: fix use of deprecated *put_count

Michael Niedermayer git at videolan.org
Sun Aug 25 19:50:27 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Aug 25 19:37:37 2013 +0200| [59360cd456dd038fb28134aff5d9b56302fff488] | committer: Michael Niedermayer

tools/graph2dot: fix use of deprecated *put_count

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

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=59360cd456dd038fb28134aff5d9b56302fff488
---

 tools/graph2dot.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/graph2dot.c b/tools/graph2dot.c
index 2daceb6..964322d 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];



More information about the ffmpeg-cvslog mailing list