2 * Copyright (c) 2008-2010 Stefano Sabatini
4 * This file is part of Libav.
6 * Libav is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * Libav is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with Libav; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <unistd.h> /* getopt */
23 #undef HAVE_AV_CONFIG_H
24 #include "libavutil/pixdesc.h"
25 #include "libavutil/audioconvert.h"
26 #include "libavfilter/avfiltergraph.h"
28 static void usage(void)
30 printf("Convert a libavfilter graph to a dot file\n");
31 printf("Usage: graph2dot [OPTIONS]\n");
34 "-i INFILE set INFILE as input file, stdin if omitted\n"
35 "-o OUTFILE set OUTFILE as output file, stdout if omitted\n"
36 "-h print this help\n");
44 static void print_digraph(FILE *outfile
, AVFilterGraph
*graph
)
48 fprintf(outfile
, "digraph G {\n");
49 fprintf(outfile
, "node [shape=box]\n");
50 fprintf(outfile
, "rankdir=LR\n");
52 for (i
= 0; i
< graph
->filter_count
; i
++) {
53 char filter_ctx_label
[128];
54 const AVFilterContext
*filter_ctx
= graph
->filters
[i
];
56 snprintf(filter_ctx_label
, sizeof(filter_ctx_label
), "%s (%s)",
58 filter_ctx
->filter
->name
);
60 for (j
= 0; j
< filter_ctx
->output_count
; j
++) {
61 AVFilterLink
*link
= filter_ctx
->outputs
[j
];
63 char dst_filter_ctx_label
[128];
64 const AVFilterContext
*dst_filter_ctx
= link
->dst
;
66 snprintf(dst_filter_ctx_label
, sizeof(dst_filter_ctx_label
),
69 dst_filter_ctx
->filter
->name
);
71 fprintf(outfile
, "\"%s\" -> \"%s\"",
72 filter_ctx_label
, dst_filter_ctx_label
);
73 if (link
->type
== AVMEDIA_TYPE_VIDEO
) {
75 " [ label= \"fmt:%s w:%d h:%d tb:%d/%d\" ]",
76 av_pix_fmt_descriptors
[link
->format
].name
,
77 link
->w
, link
->h
, link
->time_base
.num
,
79 } else if (link
->type
== AVMEDIA_TYPE_AUDIO
) {
81 av_get_channel_layout_string(buf
, sizeof(buf
), -1,
82 link
->channel_layout
);
84 " [ label= \"fmt:%s sr:%"PRId64
" cl:%s\" ]",
85 av_get_sample_fmt_name(link
->format
),
86 link
->sample_rate
, buf
);
88 fprintf(outfile
, ";\n");
92 fprintf(outfile
, "}\n");
95 int main(int argc
, char **argv
)
97 const char *outfilename
= NULL
;
98 const char *infilename
= NULL
;
101 char *graph_string
= NULL
;
102 AVFilterGraph
*graph
= av_mallocz(sizeof(AVFilterGraph
));
105 av_log_set_level(AV_LOG_DEBUG
);
107 while ((c
= getopt(argc
, argv
, "hi:o:")) != -1) {
116 outfilename
= optarg
;
123 if (!infilename
|| !strcmp(infilename
, "-"))
124 infilename
= "/dev/stdin";
125 infile
= fopen(infilename
, "r");
127 fprintf(stderr
, "Impossible to open input file '%s': %s\n",
128 infilename
, strerror(errno
));
132 if (!outfilename
|| !strcmp(outfilename
, "-"))
133 outfilename
= "/dev/stdout";
134 outfile
= fopen(outfilename
, "w");
136 fprintf(stderr
, "Impossible to open output file '%s': %s\n",
137 outfilename
, strerror(errno
));
141 /* read from infile and put it in a buffer */
143 unsigned int count
= 0;
144 struct line
*line
, *last_line
, *first_line
;
146 last_line
= first_line
= av_malloc(sizeof(struct line
));
148 while (fgets(last_line
->data
, sizeof(last_line
->data
), infile
)) {
149 struct line
*new_line
= av_malloc(sizeof(struct line
));
150 count
+= strlen(last_line
->data
);
151 last_line
->next
= new_line
;
152 last_line
= new_line
;
154 last_line
->next
= NULL
;
156 graph_string
= av_malloc(count
+ 1);
158 for (line
= first_line
; line
->next
; line
= line
->next
) {
159 unsigned int l
= strlen(line
->data
);
160 memcpy(p
, line
->data
, l
);
166 avfilter_register_all();
168 if (avfilter_graph_parse(graph
, graph_string
, NULL
, NULL
, NULL
) < 0) {
169 fprintf(stderr
, "Impossible to parse the graph description\n");
173 if (avfilter_graph_config(graph
, NULL
) < 0)
176 print_digraph(outfile
, graph
);