Show / Hide Table of Contents

Struct FilterInOutEntry

Represents an entry in a list of filter graph inputs or outputs.

Implements
IAVPointer<_AVFilterInOut>
Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.GetType()
object.Equals(object, object)
object.ReferenceEquals(object, object)
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 Source

Filter

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.

View Source

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.

View Source

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

Implements

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