39 printf(
"Convert a libavfilter graph to a dot file.\n");
40 printf(
"Usage: graph2dot [OPTIONS]\n");
43 "-i INFILE set INFILE as input file, stdin if omitted\n"
44 "-o OUTFILE set OUTFILE as output file, stdout if omitted\n"
45 "-h print this help\n");
57 fprintf(
outfile,
"digraph G {\n");
58 fprintf(
outfile,
"node [shape=box]\n");
59 fprintf(
outfile,
"rankdir=LR\n");
62 char filter_ctx_label[128];
65 snprintf(filter_ctx_label,
sizeof(filter_ctx_label),
"%s\\n(%s)",
72 char dst_filter_ctx_label[128];
75 snprintf(dst_filter_ctx_label,
sizeof(dst_filter_ctx_label),
80 fprintf(
outfile,
"\"%s\" -> \"%s\" [ label= \"inpad:%s -> outpad:%s\\n",
81 filter_ctx_label, dst_filter_ctx_label,
88 "fmt:%s w:%d h:%d tb:%d/%d",
96 "fmt:%s sr:%d cl:%s tb:%d/%d",
110 const char *outfilename =
NULL;
111 const char *infilename =
NULL;
114 char *graph_string =
NULL;
120 while ((
c =
getopt(argc, argv,
"hi:o:")) != -1) {
136 if (!infilename || !strcmp(infilename,
"-"))
137 infilename =
"/dev/stdin";
138 infile = fopen(infilename,
"r");
140 fprintf(stderr,
"Failed to open input file '%s': %s\n",
141 infilename, strerror(errno));
145 if (!outfilename || !strcmp(outfilename,
"-"))
146 outfilename =
"/dev/stdout";
147 outfile = fopen(outfilename,
"w");
149 fprintf(stderr,
"Failed to open output file '%s': %s\n",
150 outfilename, strerror(errno));
157 struct line *
line, *last_line, *first_line;
161 fprintf(stderr,
"Memory allocation failure\n");
165 while (fgets(last_line->
data,
sizeof(last_line->
data), infile)) {
168 fprintf(stderr,
"Memory allocation failure\n");
171 count += strlen(last_line->
data);
172 last_line->
next = new_line;
173 last_line = new_line;
179 fprintf(stderr,
"Memory allocation failure\n");
193 fprintf(stderr,
"Memory allocation failure\n");
198 fprintf(stderr,
"Failed to parse the graph description\n");
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
Public libavutil channel layout APIs header.
__device__ int printf(const char *,...)
static int getopt(int argc, char *argv[], const char *opts)
static void print_digraph(FILE *outfile, AVFilterGraph *graph)
int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx)
Check validity and configure all the links and formats in the graph.
const char * avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
Get the name of an AVFilterPad.
int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, AVFilterInOut *inputs, AVFilterInOut *outputs, void *log_ctx)
Add a graph described by a string to a graph.
AVFilterGraph * avfilter_graph_alloc(void)
Allocate a filter graph.
int av_channel_layout_describe(const AVChannelLayout *channel_layout, char *buf, size_t buf_size)
Get a human-readable string describing the channel layout properties.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
void av_log_set_level(int level)
Set the log level.
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
Memory handling functions.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
char * name
name of this filter instance
const AVFilter * filter
the AVFilter of which this is an instance
AVFilterContext ** filters
A link between two filters.
int w
agreed upon image width
int h
agreed upon image height
enum AVMediaType type
filter media type
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
int sample_rate
samples per second
AVChannelLayout ch_layout
channel layout of current buffer (see libavutil/channel_layout.h)
AVFilterPad * srcpad
output pad on the source filter
AVFilterPad * dstpad
input pad on the dest filter
AVFilterContext * dst
dest filter
int format
agreed upon media format
const char * name
Filter name.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
static FilteringContext * filter_ctx