AVFilterInOut
public final class AVFilterInOut
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.
-
Create a single
AVFilterInOut
entry.Declaration
Swift
public init()
-
The unique name for this input/output in the list.
Declaration
Swift
public var name: String { get set }
-
The filter context associated to this input/output.
Declaration
Swift
public var filterContext: AVFilterContext { get set }
-
The index of the filter context pad to use for linking.
Declaration
Swift
public var padIndex: Int { get set }
-
The next input/input in the list,
nil
if this is the last.Declaration
Swift
public var next: AVFilterInOut? { get set }