Interface AntPlusVideoRemoteControlPcc.IVideoStatusReceiver

Enclosing class:
AntPlusVideoRemoteControlPcc

public static interface AntPlusVideoRemoteControlPcc.IVideoStatusReceiver
Receiver for the VideoStatus event, which is: Communicates the status of a video device.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onNewVideoStatus(long estTimestamp, int volume, boolean muted, int timeRemaining, int timeProgressed, VideoDeviceCapabilities videoCapabilities, VideoDeviceState videoStateCode)
    Receives the data from a AudioStatus event.
  • Method Details

    • onNewVideoStatus

      void onNewVideoStatus(long estTimestamp, int volume, boolean muted, int timeRemaining, int timeProgressed, VideoDeviceCapabilities videoCapabilities, VideoDeviceState videoStateCode)
      Receives the data from a AudioStatus event.
      Parameters:
      estTimestamp - The estimated timestamp of when this event was triggered. Useful for correlating multiple events and determining when data was sent for more accurate data records.
      volume - The volume given as a percentage.
      muted - True if the audio is muted; false otherwise.
      timeRemaining - Seconds remaining on the video clip on a playback device, or seconds remaining available for recording on a recoding device.
      timeProgressed - Current number of seconds into playback/recording. Seconds
      videoCapabilities - Contains the capabilties of the video device.
      videoStateCode - Current VideoDeviceState of the video device.