[FFmpeg-cvslog] graph2dot: Fix use of deprecated API
Diego Biurrun
git at videolan.org
Tue Nov 5 12:14:00 CET 2013
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Mon Nov 4 17:35:38 2013 +0100| [48715285f69d70879353737d7bed049f89f58096] | committer: Diego Biurrun
graph2dot: Fix use of deprecated API
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=48715285f69d70879353737d7bed049f89f58096
---
tools/graph2dot.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/graph2dot.c b/tools/graph2dot.c
index 692ada2..86d3d14 100644
--- a/tools/graph2dot.c
+++ b/tools/graph2dot.c
@@ -58,7 +58,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
fprintf(outfile, "node [shape=box]\n");
fprintf(outfile, "rankdir=LR\n");
- for (i = 0; i < graph->filter_count; i++) {
+ for (i = 0; i < graph->nb_filters; i++) {
char filter_ctx_label[128];
const AVFilterContext *filter_ctx = graph->filters[i];
@@ -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