AVBufferSinkFlag

public struct AVBufferSinkFlag : OptionSet

Undocumented

  • Tell av_buffersink_get_buffer_ref() to read video/samples buffer reference, but not remove it from the buffer. This is useful if you need only to read a video/samples buffer, without to fetch it.

    Declaration

    Swift

    public static let peek: AVBufferSinkFlag
  • Tell av_buffersink_get_buffer_ref() not to request a frame from its input. If a frame is already buffered, it is read (and removed from the buffer), but if no frame is present, return AVERROR(EAGAIN).

    Declaration

    Swift

    public static let noRequest: AVBufferSinkFlag
  • Declaration

    Swift

    public let rawValue: Int32
  • Declaration

    Swift

    public init(rawValue: Int32)
  • Declaration

    Swift

    public var description: String { get }