AVOption

public struct AVOption : CustomStringConvertible

Undocumented

  • Undocumented

    Declaration

    Swift

    public let name: String
  • The short English help text about the option.

    Declaration

    Swift

    public let help: String?
  • The offset relative to the context structure where the option value is stored. It should be 0 for named constants.

    Declaration

    Swift

    public let offset: Int
  • Undocumented

    Declaration

    Swift

    public let type: AVOptionType
  • The default value for scalar options.

    Declaration

    Swift

    public let defaultValue: Any
  • min

    The minimum valid value for the option.

    Declaration

    Swift

    public let min: Double
  • max

    The maximum valid value for the option.

    Declaration

    Swift

    public let max: Double
  • Undocumented

    Declaration

    Swift

    public let flags: Flag
  • The logical unit to which the option belongs. Non-constant options and corresponding named constants share the same unit.

    Declaration

    Swift

    public let unit: String?
  • Declaration

    Swift

    public var description: String { get }
  • Undocumented

    See more

    Declaration

    Swift

    public struct Flag : OptionSet