QualityList

public protocol QualityList

List of qualities.

  • The number of qualities in the list.

    Declaration

    Swift

    var count: Int { get }
  • Returns the Quality object representing the quality at the index position in the media track’s quality list.

    Declaration

    Swift

    func get(_ index: Int) -> Quality

    Parameters

    index

    Position of the returned Quality.

    Return Value

    The Quality at the index position.

  • Returns the Quality object representing the quality at the index position in the media track’s quality list.

    Declaration

    Swift

    subscript(index: Int) -> Quality { get }

    Parameters

    index

    Position of the returned Quality.

    Return Value

    The Quality at the index position.