Level

public struct Level : OptionSet

Undocumented

  • Print no output.

    Declaration

    Swift

    public static let quiet: AVLog.Level
  • Undocumented

    Declaration

    Swift

    public static let panic: AVLog.Level
  • Something went wrong and recovery is not possible. For example, no header was found for a format which depends on headers or an illegal combination of parameters is used.

    Declaration

    Swift

    public static let fatal: AVLog.Level
  • Something went wrong and cannot losslessly be recovered. However, not all future data is affected.

    Declaration

    Swift

    public static let error: AVLog.Level
  • Something somehow does not look correct. This may or may not lead to problems. An example would be the use of ‘-vstrict -2’.

    Declaration

    Swift

    public static let warning: AVLog.Level
  • Standard information.

    Declaration

    Swift

    public static let info: AVLog.Level
  • Detailed information.

    Declaration

    Swift

    public static let verbose: AVLog.Level
  • Stuff which is only useful for libav* developers.

    Declaration

    Swift

    public static let debug: AVLog.Level
  • Extremely verbose debugging, useful for libav* development.

    Declaration

    Swift

    public static let trace: AVLog.Level
  • Declaration

    Swift

    public let rawValue: Int32
  • Declaration

    Swift

    public init(rawValue: Int32)