BMPTrackType
Objective-C
enum BMPTrackType {}
Swift
enum BMPTrackType : Int
The type of a track object.
-
Indicates a missing type
Declaration
Objective-C
BMPTrackTypeNone = 0Swift
case none = 0 -
Indicates a track containing textual data like the BMPSubtitleTrack.
Declaration
Objective-C
BMPTrackTypeTextSwift
case text = 1 -
Indicates a track containing thumbnail data like the BMPThumbnailTrack.
Declaration
Objective-C
BMPTrackTypeThumbnailSwift
case thumbnail = 2 -
Indicates a track containing audio data like the BMPAudioTrack.
Declaration
Objective-C
BMPTrackTypeAudioSwift
case audio = 3
BMPTrackType Enumeration Reference