AliVCSDK 6.17.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
 
Loading...
Searching...
No Matches
AlivcLivePlayAudioStreamType.java
1package com.alivc.live.player.annotations;
2
3import com.alivc.live.pusher.Visible;
4
5
13@Visible
19
24
29
34
35 ;
36
45 AlivcLivePlayAudioStreamType peerAudioStreamType) {
46 int combinedValue = audioStreamType.getValue() | peerAudioStreamType.getValue();
48 if (type.getValue() == combinedValue) {
49 return type;
50 }
51 }
53 }
54
55 public int getValue() {
56 return value;
57 }
58
59 private final int value;
60
62 this.value = value;
63 }
64}
static AlivcLivePlayAudioStreamType combineAudioStreamTypes(AlivcLivePlayAudioStreamType audioStreamType, AlivcLivePlayAudioStreamType peerAudioStreamType)