FFmpeg
4.0
|
A linked-list of the inputs/outputs of the filter chain. More...
#include <libavfilter/avfilter.h>
Data Fields | |
char * | name |
unique name for this input/output in the list More... | |
AVFilterContext * | filter_ctx |
filter context associated to this input/output More... | |
int | pad_idx |
index of the filt_ctx pad to use for linking More... | |
struct AVFilterInOut * | next |
next input/input in the list, NULL if this is the last More... | |
A linked-list of the inputs/outputs of the filter chain.
This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(), where it is used to communicate open (unlinked) inputs and outputs from and to the caller. This struct specifies, per each not connected pad contained in the graph, the filter context and the pad index required for establishing a link.
Definition at line 1003 of file avfilter.h.
char* AVFilterInOut::name |
unique name for this input/output in the list
Definition at line 1005 of file avfilter.h.
Referenced by avfilter_graph_parse(), get_video_frame(), init_filter(), init_filters(), init_input_filter(), link_filter_inouts(), open_output_file(), parse_inputs(), and parse_outputs().
AVFilterContext* AVFilterInOut::filter_ctx |
filter context associated to this input/output
Definition at line 1008 of file avfilter.h.
Referenced by avfilter_graph_parse(), configure_input_audio_filter(), configure_input_filter(), configure_input_video_filter(), configure_output_audio_filter(), configure_output_filter(), configure_output_video_filter(), describe_filter_link(), get_video_frame(), init_complex_filtergraph(), init_filter(), init_filters(), init_input_filter(), link_filter_inouts(), and parse_outputs().
int AVFilterInOut::pad_idx |
index of the filt_ctx pad to use for linking
Definition at line 1011 of file avfilter.h.
Referenced by avfilter_graph_parse(), configure_input_audio_filter(), configure_input_filter(), configure_input_video_filter(), configure_output_audio_filter(), configure_output_filter(), configure_output_video_filter(), describe_filter_link(), get_video_frame(), init_complex_filtergraph(), init_filter(), init_filters(), init_input_filter(), link_filter_inouts(), parse_inputs(), and parse_outputs().
struct AVFilterInOut* AVFilterInOut::next |
next input/input in the list, NULL if this is the last
Definition at line 1014 of file avfilter.h.
Referenced by append_inout(), avfilter_graph_parse(), avfilter_graph_queue_command(), avfilter_inout_free(), configure_filtergraph(), extract_inout(), get_video_frame(), init_complex_filtergraph(), init_filter(), init_filters(), insert_inout(), link_filter_inouts(), and parse_outputs().