BMPAudioRemovedEvent


@interface BMPAudioRemovedEvent : BMPPlayerEvent

See BMPPlayerListener.h for more information on this event.

  • The removed BMPAudioTrack

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) BMPAudioTrack *audioTrack

    Swift

    var audioTrack: UnsafeMutablePointer<Int32> { get }
  • The current playback time (in seconds)

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSTimeInterval time;

    Swift

    var time: TimeInterval { get }
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)init NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    + (instancetype)new NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithAudioTrack:(BMPAudioTrack *)audioTrack time:(NSTimeInterval)time NS_DESIGNATED_INITIALIZER;

    Swift

    init(audioTrack: Any!, time: TimeInterval)