BMPTimelineReferencePoint

Objective-C

enum BMPTimelineReferencePoint : NSInteger {}

Swift

enum TimelineReferencePoint : Int, @unchecked Sendable

Timeline reference point to calculate SourceConfigOptions.startOffset from. Default for live: TimelineReferencePoint.End Default for VOD: TimelineReferencePoint.Start.

  • Indicates a not provided reference point. We will detect the reference point regarding the type of the stream (VOD or Live).

    Declaration

    Objective-C

    BMPTimelineReferencePointAuto = 0

    Swift

    case auto = 0
  • Relative offset will be calculated from the beginning of the stream or DVR window.

    Declaration

    Objective-C

    BMPTimelineReferencePointStart

    Swift

    case start = 1
  • Relative offset will be calculated from the end of the stream or the live edge in case of a live stream with DVR window.

    Declaration

    Objective-C

    BMPTimelineReferencePointEnd

    Swift

    case end = 2