AliVCSDK  6.0.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
AlivcLivePlayerStatsInfo.java
1 package com.alivc.live.player;
2 
4 
5 
12 @Visible
14 
18  public String userId = "";
19 
23  public String channelId = "";
24 
28  public int videoWidth = 0;
29 
33  public int videoHeight = 0;
34 
38  public int decodeFps = 0;
39 
43  public int renderFps = 0;
44 
50  public int videoBitrate = 0;
51 
57  public int audioBitrate = 0;
58 
62  public int audioLossRate = 0;
63 
67  public int lossRate = 0;
68 
69  @Override
70  public String toString() {
71  return "AlivcLivePlayerStatsInfo{" +
72  "userId='" + userId + '\'' +
73  ", channelId='" + channelId + '\'' +
74  ", videoWidth=" + videoWidth +
75  ", videoHeight=" + videoHeight +
76  ", decodeFps=" + decodeFps +
77  ", renderFps=" + renderFps +
78  ", videoBitrate=" + videoBitrate +
79  ", audioBitrate=" + audioBitrate +
80  ", audioLossRate=" + audioLossRate +
81  ", lossRate=" + lossRate +
82  '}';
83  }
84 
85 }