AliVCSDK  6.0.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
AlivcSoundFormat.java
1 package com.alivc.live.pusher;
2 
11 @Visible
12 public 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 }