Show / Hide Table of Contents

Class FilterLink

Represents a connection between two filters in a filter graph.

Inheritance
object
FilterLink
Implements
IAVPointer<_AVFilterLink>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 Source

DestinationContext

Gets the filter that consumes frames from this link.

Declaration
public FilterContext DestinationContext { get; }
Property Value
Type Description
FilterContext
View Source

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
View Source

SourceContext

Gets the filter that produces frames for this link.

Declaration
public FilterContext SourceContext { get; }
Property Value
Type Description
FilterContext
View Source

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

Implements

IAVPointer<T>
  • View Source
In this article
Back to top Generated by DocFX