#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) |
Gets a filter instance with name name from graph. | |
int | avfilter_graph_add_filter (AVFilterGraph *graphctx, AVFilterContext *filter) |
Adds an existing filter instance to a filter graph. | |
int | avfilter_graph_check_validity (AVFilterGraph *graphctx, AVClass *log_ctx) |
Checks for the validity of graph. | |
int | avfilter_graph_config_links (AVFilterGraph *graphctx, AVClass *log_ctx) |
Configures all the links of graphctx. | |
int | avfilter_graph_config_formats (AVFilterGraph *graphctx, AVClass *log_ctx) |
Configures the formats of all the links in the graph. | |
void | avfilter_graph_destroy (AVFilterGraph *graph) |
Frees a graph and destroys its links. |
int avfilter_graph_add_filter | ( | AVFilterGraph * | graphctx, | |
AVFilterContext * | filter | |||
) |
Adds 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(), query_formats(), and video_thread().
int avfilter_graph_check_validity | ( | AVFilterGraph * | graphctx, | |
AVClass * | log_ctx | |||
) |
Checks 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.
Referenced by main(), and video_thread().
int avfilter_graph_config_formats | ( | AVFilterGraph * | graphctx, | |
AVClass * | log_ctx | |||
) |
Configures the formats of all the links in the graph.
Definition at line 193 of file avfiltergraph.c.
Referenced by main(), and video_thread().
int avfilter_graph_config_links | ( | AVFilterGraph * | graphctx, | |
AVClass * | log_ctx | |||
) |
Configures all the links of graphctx.
Definition at line 80 of file avfiltergraph.c.
Referenced by main(), and video_thread().
void avfilter_graph_destroy | ( | AVFilterGraph * | graph | ) |
Frees a graph and destroys its links.
Definition at line 29 of file avfiltergraph.c.
Referenced by avfilter_graph_parse(), and video_thread().
AVFilterContext* avfilter_graph_get_filter | ( | AVFilterGraph * | graph, | |
char * | name | |||
) |
Gets a filter instance with name name from graph.
Definition at line 97 of file avfiltergraph.c.