#include <string.h>#include "libavutil/pixdesc.h"#include "avfilter.h"#include "avfiltergraph.h"Go to the source code of this file.
Defines | |
| #define | BPRINTF(...) cur += snprintf(cur, buf_end - FFMIN(cur, buf_end), __VA_ARGS__) |
| #define | BPAD(c, l) |
Functions | |
| static int | snprint_link_prop (char *buf, char *buf_end, AVFilterLink *link) |
| static size_t | avfilter_graph_dump_to_buf (AVFilterGraph *graph, char *buf, char *buf_end) |
| char * | avfilter_graph_dump (AVFilterGraph *graph, const char *options) |
| Dump a graph into a human-readable string representation. | |
| #define BPAD | ( | c, | |||
| l | ) |
| #define BPRINTF | ( | ... | ) | cur += snprintf(cur, buf_end - FFMIN(cur, buf_end), __VA_ARGS__) |
Definition at line 28 of file graphdump.c.
Referenced by avfilter_graph_dump_to_buf(), and snprint_link_prop().
| char* avfilter_graph_dump | ( | AVFilterGraph * | graph, | |
| const char * | options | |||
| ) |
Dump a graph into a human-readable string representation.
| graph | the graph to dump | |
| options | formatting options; currently ignored |
Definition at line 163 of file graphdump.c.
Referenced by lavfi_read_header().
| static size_t avfilter_graph_dump_to_buf | ( | AVFilterGraph * | graph, | |
| char * | buf, | |||
| char * | buf_end | |||
| ) | [static] |
| static int snprint_link_prop | ( | char * | buf, | |
| char * | buf_end, | |||
| AVFilterLink * | link | |||
| ) | [static] |
1.5.8