NIMSDK-AOS  10.8.10
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 
10 /**
11  * 语音播放设备
12  */
13 public interface AVChatAudioDevice {
14 
15  /**
16  * 扬声器
17  */
18  int SPEAKER_PHONE = RtcAudioDevice.SPEAKER_PHONE;
19 
20  /**
21  * 有线耳机
22  */
23  int WIRED_HEADSET = RtcAudioDevice.WIRED_HEADSET;
24 
25  /**
26  * 听筒
27  */
28  int EARPIECE = RtcAudioDevice.EARPIECE;
29 
30 
31  /**
32  * 蓝牙耳机
33  */
34  int BLUETOOTH_HEADSET = RtcAudioDevice.BLUETOOTH_HEADSET;
35 
36 
37  /**
38  * 有线外放
39  */
40  int WIRED_SPEAKER = RtcAudioDevice.WIRED_SPEAKER;
41 
42  /**
43  * 蓝牙外放
44  */
45  int BLUETOOTH_SPEAKER = RtcAudioDevice.BLUETOOTH_SPEAKER;
46 }