#include <ctype.h>#include <string.h>#include "avfilter.h"#include "avfiltergraph.h"Go to the source code of this file.
Functions | |
| void | avfilter_graph_destroy (AVFilterGraph *graph) |
| Free a graph and destroy its links. | |
| int | avfilter_graph_add_filter (AVFilterGraph *graph, AVFilterContext *filter) |
| Add an existing filter instance to a filter graph. | |
| int | avfilter_graph_check_validity (AVFilterGraph *graph, AVClass *log_ctx) |
Check for the validity of graph. | |
| AVFilterContext * | avfilter_graph_get_filter (AVFilterGraph *graph, char *name) |
Get from graph a filter instance with name name. | |
| static int | query_formats (AVFilterGraph *graph) |
| static void | pick_format (AVFilterLink *link) |
| static void | pick_formats (AVFilterGraph *graph) |
| int | avfilter_graph_config_formats (AVFilterGraph *graph) |
| Configure the formats of all the links in the graph. | |
| 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 * | graph | ) |
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.
| static void pick_format | ( | AVFilterLink * | link | ) | [static] |
| static void pick_formats | ( | AVFilterGraph * | graph | ) | [static] |
| static int query_formats | ( | AVFilterGraph * | graph | ) | [static] |
1.5.8