DirectCdnStreamingStats
The statistics of the current CDN streaming.
public class DirectCdnStreamingStats {
  public int videoWidth;
  public int videoHeight;
  public int fps;
  public int videoBitrate;
  public int audioBitrate;
  public DirectCdnStreamingStats() {
    videoWidth = 0;
    videoHeight = 0;
    fps = 0;
    videoBitrate = 0;
    audioBitrate = 0;
  }
}
            
            
            
         
            
            
            
                        
            Details
- Deprecated:
 - Deprecated as of v4.6.0.
 
Attributes
- videoWidth
 - The width (px) of the video frame.
 - videoHeight
 - The height (px) of the video frame.
 - fps
 - The frame rate (fps) of the current video frame.
 - videoBitrate
 - The bitrate (bps) of the current video frame.
 - audioBitrate
 - The bitrate (bps) of the current audio frame.