Struct FilterPadList
Represents a read-only list of FilterPad objects, providing access to the pads in a filter.
Implements
Inherited Members
Namespace: FFmpeg.Filters
Assembly: FFmpeg.dll
Syntax
public readonly struct FilterPadList : IReadOnlyList<FilterPad>, IReadOnlyCollection<FilterPad>, IEnumerable<FilterPad>, IEnumerable
Properties
View SourceCount
Gets the number of filter pads in the list.
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
this[int]
Gets the FilterPad at the specified index.
Declaration
public FilterPad this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The zero-based index of the pad to retrieve. |
Property Value
| Type | Description |
|---|---|
| FilterPad | The FilterPad at the specified index. |
Exceptions
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | Thrown when the index is outside the range of available pads. |
Methods
View SourceGetEnumerator()
Returns an enumerator that iterates through the FilterPadList.
Declaration
public IEnumerator<FilterPad> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<FilterPad> | An enumerator for the FilterPadList. |