Package us.zoom.sdk

Interface ZoomVideoSDKSessionASVStatisticInfo


  • public interface ZoomVideoSDKSessionASVStatisticInfo
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getRecvFps()
      Get the frame rate in FPS received by the current user.
      int getRecvFrameHeight()
      Get the frame height in pixels received by the current user.
      int getRecvFrameWidth()
      Get the frame width in pixels received by the current user.
      int getRecvJitter()
      Get the video jitter (change in latency) experienced by the current user while receiving data.
      int getRecvLatency()
      Get the video latency (delay in network data transfer) experienced by the current user while receiving data.
      float getRecvPacketLossAvg()
      Get the video average packet loss received by the current user.
      float getRecvPacketLossMax()
      Get the maximum video packet loss received by the current user.
      int getSendFps()
      Get the frame rate in FPS sent by the current user.
      int getSendFrameHeight()
      Get the frame height in pixels sent by the current user.
      int getSendFrameWidth()
      Get the frame width in pixels sent by the current user.
      int getSendJitter()
      Get the video jitter (change in latency) experienced by the current user while sending data.
      int getSendLatency()
      Get the video latency (delay in network data transfer) experienced by the current user while sending data.
      float getSendPacketLossAvg()
      Get the average video packet loss sent by the current user.
      float getSendPacketLossMax()
      Get the maximum video packet loss sent by the current user.
    • Method Detail

      • getSendFrameWidth

        int getSendFrameWidth()
        Get the frame width in pixels sent by the current user.
        Returns:
        frame width in pixels
      • getSendFrameHeight

        int getSendFrameHeight()
        Get the frame height in pixels sent by the current user.
        Returns:
        frame height in pixels
      • getSendFps

        int getSendFps()
        Get the frame rate in FPS sent by the current user.
        Returns:
        frame rate in FPS (Frames Per Second)
      • getSendLatency

        int getSendLatency()
        Get the video latency (delay in network data transfer) experienced by the current user while sending data.
        Returns:
        latency in milliseconds
      • getSendJitter

        int getSendJitter()
        Get the video jitter (change in latency) experienced by the current user while sending data.
        Returns:
        jitter in milliseconds
      • getSendPacketLossAvg

        float getSendPacketLossAvg()
        Get the average video packet loss sent by the current user.
        Returns:
        percentage of average packet loss
      • getSendPacketLossMax

        float getSendPacketLossMax()
        Get the maximum video packet loss sent by the current user.
        Returns:
        percentage of maximum packet loss
      • getRecvFrameWidth

        int getRecvFrameWidth()
        Get the frame width in pixels received by the current user.
        Returns:
        frame width in pixels
      • getRecvFrameHeight

        int getRecvFrameHeight()
        Get the frame height in pixels received by the current user.
        Returns:
        frame height in pixels
      • getRecvFps

        int getRecvFps()
        Get the frame rate in FPS received by the current user.
        Returns:
        frame rate in FPS (Frames Per Second)
      • getRecvLatency

        int getRecvLatency()
        Get the video latency (delay in network data transfer) experienced by the current user while receiving data.
        Returns:
        latency in milliseconds
      • getRecvJitter

        int getRecvJitter()
        Get the video jitter (change in latency) experienced by the current user while receiving data.
        Returns:
        jitter in milliseconds
      • getRecvPacketLossAvg

        float getRecvPacketLossAvg()
        Get the video average packet loss received by the current user.
        Returns:
        percentage of average packet loss
      • getRecvPacketLossMax

        float getRecvPacketLossMax()
        Get the maximum video packet loss received by the current user.
        Returns:
        percentage of maximum packet loss