#include "avfilter.h"
Go to the source code of this file.
Data Structures | |
struct | AVFilterGraph |
Functions | |
AVFilterContext * | avfilter_graph_get_filter (AVFilterGraph *graph, char *name) |
Get from graph a filter instance with name name . | |
int | avfilter_graph_add_filter (AVFilterGraph *graphctx, AVFilterContext *filter) |
Add an existing filter instance to a filter graph. | |
int | avfilter_graph_check_validity (AVFilterGraph *graphctx, AVClass *log_ctx) |
Check for the validity of graph . | |
int | avfilter_graph_config_formats (AVFilterGraph *graphctx) |
Configure the formats of all the links in the graph. | |
void | avfilter_graph_destroy (AVFilterGraph *graph) |
Free a graph and destroy its links. |
int avfilter_graph_add_filter | ( | AVFilterGraph * | graphctx, | |
AVFilterContext * | filter | |||
) |
Add an existing filter instance to a filter graph.
graph | The filter graph | |
filter | The filter to be added |
Definition at line 37 of file avfiltergraph.c.
Referenced by create_filter(), and query_formats().
int avfilter_graph_check_validity | ( | AVFilterGraph * | graphctx, | |
AVClass * | log_ctx | |||
) |
Check for the validity of graph
.
A graph is considered valid if all its input and output pads are connected.
Definition at line 50 of file avfiltergraph.c.
int avfilter_graph_config_formats | ( | AVFilterGraph * | graphctx | ) |
Configure the formats of all the links in the graph.
Definition at line 172 of file avfiltergraph.c.
void avfilter_graph_destroy | ( | AVFilterGraph * | graph | ) |
Free a graph and destroy its links.
Definition at line 29 of file avfiltergraph.c.
Referenced by avfilter_graph_parse().
AVFilterContext* avfilter_graph_get_filter | ( | AVFilterGraph * | graph, | |
char * | name | |||
) |
Get from graph
a filter instance with name name
.
Definition at line 80 of file avfiltergraph.c.