Class FilterLink
Represents a connection between two filters in a filter graph.
Implements
IAVPointer<_AVFilterLink>
Inherited Members
Namespace: FFmpeg.Filters
Assembly: FFmpeg.dll
Syntax
public class FilterLink : IAVPointer<_AVFilterLink>
Remarks
A FilterLink describes the media path between the output pad of a source FilterContext and the input pad of a destination FilterContext. It provides access to both connected filters and the corresponding pad indices.
Properties
View SourceDestinationContext
Gets the filter that consumes frames from this link.
Declaration
public FilterContext DestinationContext { get; }
Property Value
| Type | Description |
|---|---|
| FilterContext |
DestinationPadIndex
Gets the index of the input pad on the destination filter associated with this link.
Declaration
public int DestinationPadIndex { get; }
Property Value
| Type | Description |
|---|---|
| int |
SourceContext
Gets the filter that produces frames for this link.
Declaration
public FilterContext SourceContext { get; }
Property Value
| Type | Description |
|---|---|
| FilterContext |
SourcePadIndex
Gets the index of the output pad on the source filter associated with this link.
Declaration
public int SourcePadIndex { get; }
Property Value
| Type | Description |
|---|---|
| int |