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