AliVCSDK 6.17.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
 
Loading...
Searching...
No Matches
AlivcSoundFormat.java
1package com.alivc.live.pusher;
2
3
11@Visible
12public enum AlivcSoundFormat {
17
22
27
32
37
42
47
52
57
58 private final int mSoundFormat;
59
60 AlivcSoundFormat(int soundFormat) {
61 mSoundFormat = soundFormat;
62 }
63
69 public int getAlivcSoundFormat() {
70 return mSoundFormat;
71 }
72}