Struct FilterInOutEntry
Represents an entry in a list of filter graph inputs or outputs.
Implements
IAVPointer<_AVFilterInOut>
Inherited Members
Namespace: FFmpeg.Filters
Assembly: FFmpeg.dll
Syntax
public struct FilterInOutEntry : IAVPointer<_AVFilterInOut>
Remarks
A FilterInOutEntry corresponds to FFmpeg's
AVFilterInOut structure and is primarily used when parsing
filter graph descriptions with avfilter_graph_parse_ptr().
Properties
View SourceFilter
Gets or sets the filter associated with this entry.
Declaration
public FilterContext? Filter { get; set; }
Property Value
| Type | Description |
|---|---|
| FilterContext | The corresponding FilterContext, or null if no filter has been assigned. |
Name
Gets or sets the name of the link associated with this entry.
Declaration
public string? Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Remarks
The name is used to match unconnected filter graph inputs and outputs when parsing a filter graph description.
PadIdx
Gets or sets the index of the filter pad associated with this entry.
Declaration
public int PadIdx { get; set; }
Property Value
| Type | Description |
|---|---|
| int |