NIMSDK-AOS  9.16.0
AVChatAudioDevice.java
浏览该文件的文档.
1 /*
2  * Copyright (c) 2014-2018 NetEase, Inc.
3  * All right reserved.
4  */
5 
6 package com.netease.nimlib.sdk.avchat.constant;
7 
8 import com.netease.nrtc.engine.rawapi.RtcAudioDevice;
9 
13 public interface AVChatAudioDevice {
14 
18  int SPEAKER_PHONE = RtcAudioDevice.SPEAKER_PHONE;
19 
23  int WIRED_HEADSET = RtcAudioDevice.WIRED_HEADSET;
24 
28  int EARPIECE = RtcAudioDevice.EARPIECE;
29 
30 
34  int BLUETOOTH_HEADSET = RtcAudioDevice.BLUETOOTH_HEADSET;
35 
36 
40  int WIRED_SPEAKER = RtcAudioDevice.WIRED_SPEAKER;
41 
45  int BLUETOOTH_SPEAKER = RtcAudioDevice.BLUETOOTH_SPEAKER;
46 }