FFmpeg
|
Parameters describing a filter to be created in a filtergraph. More...
#include <avfilter.h>
Data Fields | |
AVFilterContext * | filter |
The filter context. More... | |
char * | filter_name |
Name of the AVFilter to be used. More... | |
char * | instance_name |
Name to be used for this filter instance. More... | |
AVDictionary * | opts |
Options to be apllied to the filter. More... | |
AVFilterPadParams ** | inputs |
unsigned | nb_inputs |
AVFilterPadParams ** | outputs |
unsigned | nb_outputs |
Parameters describing a filter to be created in a filtergraph.
Created as a child of AVFilterGraphSegment by avfilter_graph_segment_parse(). Freed in avfilter_graph_segment_free().
Definition at line 1049 of file avfilter.h.
AVFilterContext* AVFilterParams::filter |
The filter context.
Created by avfilter_graph_segment_create_filters() based on AVFilterParams.filter_name and instance_name.
Callers may also create the filter context manually, then they should av_free() filter_name and set it to NULL. Such AVFilterParams instances are then skipped by avfilter_graph_segment_create_filters().
Definition at line 1060 of file avfilter.h.
Referenced by avfilter_graph_parse_ptr(), avfilter_graph_segment_apply_opts(), avfilter_graph_segment_create_filters(), avfilter_graph_segment_init(), avfilter_graph_segment_link(), find_linklabel(), graph_opts_apply(), link_inputs(), link_outputs(), and log_unknown_opt().
char* AVFilterParams::filter_name |
Name of the AVFilter to be used.
An av_malloc()'ed string, set by avfilter_graph_segment_parse(). Will be passed to avfilter_get_by_name() by avfilter_graph_segment_create_filters().
Callers may av_free() this string and replace it with another one or NULL. If the caller creates the filter instance manually, this string MUST be set to NULL.
When both AVFilterParams.filter an AVFilterParams.filter_name are NULL, this AVFilterParams instance is skipped by avfilter_graph_segment_*() functions.
Definition at line 1077 of file avfilter.h.
Referenced by avfilter_graph_segment_apply_opts(), avfilter_graph_segment_create_filters(), avfilter_graph_segment_init(), avfilter_graph_segment_link(), filter_params_free(), and filter_parse().
char* AVFilterParams::instance_name |
Name to be used for this filter instance.
An av_malloc()'ed string, may be set by avfilter_graph_segment_parse() or left NULL. The caller may av_free() this string and replace with another one or NULL.
Will be used by avfilter_graph_segment_create_filters() - passed as the third argument to avfilter_graph_alloc_filter(), then freed and set to NULL.
Definition at line 1089 of file avfilter.h.
Referenced by avfilter_graph_segment_create_filters(), filter_params_free(), and filter_parse().
AVDictionary* AVFilterParams::opts |
Options to be apllied to the filter.
Filled by avfilter_graph_segment_parse(). Afterwards may be freely modified by the caller.
Will be applied to the filter by avfilter_graph_segment_apply_opts() with an equivalent of av_opt_set_dict2(filter, &opts, AV_OPT_SEARCH_CHILDREN), i.e. any unapplied options will be left in this dictionary.
Definition at line 1101 of file avfilter.h.
Referenced by avfilter_graph_segment_apply_opts(), filter_params_free(), filter_parse(), graph_opts_apply(), and log_unknown_opt().
AVFilterPadParams** AVFilterParams::inputs |
Definition at line 1103 of file avfilter.h.
Referenced by avfilter_graph_parse_ptr(), filter_params_free(), filter_parse(), find_linklabel(), link_inputs(), and link_outputs().
unsigned AVFilterParams::nb_inputs |
Definition at line 1104 of file avfilter.h.
Referenced by avfilter_graph_parse_ptr(), filter_params_free(), filter_parse(), find_linklabel(), link_inputs(), and link_outputs().
AVFilterPadParams** AVFilterParams::outputs |
Definition at line 1106 of file avfilter.h.
Referenced by avfilter_graph_parse_ptr(), filter_params_free(), filter_parse(), find_linklabel(), and link_outputs().
unsigned AVFilterParams::nb_outputs |
Definition at line 1107 of file avfilter.h.
Referenced by avfilter_graph_parse_ptr(), filter_params_free(), filter_parse(), find_linklabel(), and link_outputs().