AliVCSDK
4.5.1
阿里云音视频SDK,为视频开发者提供一站式接入服务
AlivcLivePushMonitorLevel.java
1
package
com.alivc.live.pusher;
2
3
12
@Visible
13
public
enum
AlivcLivePushMonitorLevel
{
14
20
ALL
(0),
21
27
CUT
(1),
28
32
NONE
(2),
33
34
;
35
36
private
final
int
level;
37
43
public
int
getLevel
() {
44
return
level;
45
}
46
47
AlivcLivePushMonitorLevel
(
int
level) {
48
this.level = level;
49
}
50
}
com.alivc.live.pusher.AlivcLivePushMonitorLevel
Live push monitor level.
Definition:
AlivcLivePushMonitorLevel.java:13
com.alivc.live.pusher.AlivcLivePushMonitorLevel.ALL
ALL
Definition:
AlivcLivePushMonitorLevel.java:20
com.alivc.live.pusher.AlivcLivePushMonitorLevel.NONE
NONE
Definition:
AlivcLivePushMonitorLevel.java:32
com.alivc.live.pusher.AlivcLivePushMonitorLevel.getLevel
int getLevel()
Definition:
AlivcLivePushMonitorLevel.java:43
com.alivc.live.pusher.AlivcLivePushMonitorLevel.CUT
CUT
Definition:
AlivcLivePushMonitorLevel.java:27