OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 #define VE_ALREADY_LISTENING 8012 | 26 #define VE_ALREADY_LISTENING 8012 |
27 #define VE_CHANNEL_NOT_CREATED 8013 | 27 #define VE_CHANNEL_NOT_CREATED 8013 |
28 #define VE_MAX_ACTIVE_CHANNELS_REACHED 8014 | 28 #define VE_MAX_ACTIVE_CHANNELS_REACHED 8014 |
29 #define VE_REC_CANNOT_PREPARE_HEADER 8015 | 29 #define VE_REC_CANNOT_PREPARE_HEADER 8015 |
30 #define VE_REC_CANNOT_ADD_BUFFER 8016 | 30 #define VE_REC_CANNOT_ADD_BUFFER 8016 |
31 #define VE_PLAY_CANNOT_PREPARE_HEADER 8017 | 31 #define VE_PLAY_CANNOT_PREPARE_HEADER 8017 |
32 #define VE_ALREADY_SENDING 8018 | 32 #define VE_ALREADY_SENDING 8018 |
33 #define VE_INVALID_IP_ADDRESS 8019 | 33 #define VE_INVALID_IP_ADDRESS 8019 |
34 #define VE_ALREADY_PLAYING 8020 | 34 #define VE_ALREADY_PLAYING 8020 |
35 #define VE_NOT_ALL_VERSION_INFO 8021 | 35 #define VE_NOT_ALL_VERSION_INFO 8021 |
36 #define VE_DTMF_OUTOF_RANGE 8022 | 36 // 8022 is not used |
37 #define VE_INVALID_CHANNELS 8023 | 37 #define VE_INVALID_CHANNELS 8023 |
38 #define VE_SET_PLTYPE_FAILED 8024 | 38 #define VE_SET_PLTYPE_FAILED 8024 |
39 // 8025 is not used | 39 // 8025 is not used |
40 #define VE_NOT_INITED 8026 | 40 #define VE_NOT_INITED 8026 |
41 #define VE_NOT_SENDING 8027 | 41 #define VE_NOT_SENDING 8027 |
42 #define VE_EXT_TRANSPORT_NOT_SUPPORTED 8028 | 42 #define VE_EXT_TRANSPORT_NOT_SUPPORTED 8028 |
43 #define VE_EXTERNAL_TRANSPORT_ENABLED 8029 | 43 #define VE_EXTERNAL_TRANSPORT_ENABLED 8029 |
44 #define VE_STOP_RECORDING_FAILED 8030 | 44 #define VE_STOP_RECORDING_FAILED 8030 |
45 #define VE_INVALID_RATE 8031 | 45 #define VE_INVALID_RATE 8031 |
46 #define VE_INVALID_PACKET 8032 | 46 #define VE_INVALID_PACKET 8032 |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 #define VE_CANNOT_STOP_PLAYOUT 10031 | 157 #define VE_CANNOT_STOP_PLAYOUT 10031 |
158 #define VE_CANNOT_INIT_CHANNEL 10032 | 158 #define VE_CANNOT_INIT_CHANNEL 10032 |
159 #define VE_RECV_SOCKET_ERROR 10033 | 159 #define VE_RECV_SOCKET_ERROR 10033 |
160 #define VE_SOCKET_TRANSPORT_MODULE_ERROR 10034 | 160 #define VE_SOCKET_TRANSPORT_MODULE_ERROR 10034 |
161 #define VE_AUDIO_CONF_MIX_MODULE_ERROR 10035 | 161 #define VE_AUDIO_CONF_MIX_MODULE_ERROR 10035 |
162 | 162 |
163 // Warnings for other platforms (reserved range 8061-8080) | 163 // Warnings for other platforms (reserved range 8061-8080) |
164 #define VE_IGNORED_FUNCTION 8061 | 164 #define VE_IGNORED_FUNCTION 8061 |
165 | 165 |
166 #endif // WEBRTC_VOICE_ENGINE_VOE_ERRORS_H | 166 #endif // WEBRTC_VOICE_ENGINE_VOE_ERRORS_H |
OLD | NEW |