AliVCSDK 6.17.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
 
载入中...
搜索中...
未找到
AlivcLivePlayerStatsInfo.java
1package com.alivc.live.player;
2
3import com.alivc.live.annotations.AlivcLiveAudioQuality;
4import com.alivc.live.pusher.Visible;
5
14@Visible
16
20 public String userId = "";
21
25 public String channelId = "";
26
30 public int videoWidth = 0;
31
35 public int videoHeight = 0;
36
40 public int decodeFps = 0;
41
45 public int renderFps = 0;
46
52 public int videoBitrate = 0;
53
57 public int totalAudioFrozenTime = 0;
58
64 public int videoFrozenRate = 0;
65
69 public int totalVideoFrozenTimes = 0;
70
76 public int audioFrozenRate = 0;
77
82
88 public int audioBitrate = 0;
89
93 public int audioLossRate = 0;
94
98 public int jitterBufferDelay = 0;
99
103 public int networkTransportDelay = 0;
104
110 public long lastMileDelay = 0;
111
115 public float cpuUsage = 0f;
116
120 public float systemCpuUsage = 0f;
121
125 public int lossRate = 0;
126
127 @Override
128 public String toString() {
129 return "AlivcLivePlayerStatsInfo{" +
130 "userId='" + userId + '\'' +
131 ", channelId='" + channelId + '\'' +
132 ", videoWidth=" + videoWidth +
133 ", videoHeight=" + videoHeight +
134 ", decodeFps=" + decodeFps +
135 ", renderFps=" + renderFps +
136 ", videoBitrate=" + videoBitrate +
137 ", totalAudioFrozenTime=" + totalAudioFrozenTime +
138 ", videoFrozenRate=" + videoFrozenRate +
139 ", totalVideoFrozenTimes=" + totalVideoFrozenTimes +
140 ", audioFrozenRate=" + audioFrozenRate +
141 ", audioQuality=" + audioQuality +
142 ", audioBitrate=" + audioBitrate +
143 ", audioLossRate=" + audioLossRate +
144 ", jitterBufferDelay=" + jitterBufferDelay +
145 ", networkTransportDelay=" + networkTransportDelay +
146 ", lastMileDelay=" + lastMileDelay +
147 ", cpuUsage=" + cpuUsage +
148 ", systemCpuUsage=" + systemCpuUsage +
149 ", lossRate=" + lossRate +
150 '}';
151 }
152}