AVInputFormat

public struct AVInputFormat

Undocumented

  • Find AVInputFormat based on the short name of the input format.

    Declaration

    Swift

    public init?(name: String)

    Parameters

    name

    name of the input format

  • A comma separated list of short names for the format.

    Declaration

    Swift

    public var name: String { get }
  • Descriptive name for the format, meant to be more human-readable than name.

    Declaration

    Swift

    public var longName: String { get }
  • Undocumented

    Declaration

    Swift

    public var flags: Flag { get set }
  • If extensions are defined, then no probe is done. You should usually not use extension format guessing because it is not reliable enough.

    Declaration

    Swift

    public var extensions: String? { get }
  • Comma-separated list of mime types.

    Declaration

    Swift

    public var mimeType: String? { get }
  • AVClass for the private context.

    Declaration

    Swift

    public var privClass: AVClass? { get }
  • Get all registered demuxers.

    Declaration

    Swift

    public static var supportedFormats: [AVInputFormat] { get }
  • Flags used by flags.

    See more

    Declaration

    Swift

    public struct Flag : OptionSet
  • Undocumented

    Declaration

    Swift

    public func withUnsafeObjectPointer<T>(_ body: (UnsafeMutableRawPointer) throws -> T) rethrows -> T