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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 #define VE_RUNTIME_PLAY_WARNING 8098 | 73 #define VE_RUNTIME_PLAY_WARNING 8098 |
74 #define VE_RUNTIME_REC_WARNING 8099 | 74 #define VE_RUNTIME_REC_WARNING 8099 |
75 #define VE_NOT_PLAYING 8100 | 75 #define VE_NOT_PLAYING 8100 |
76 #define VE_SOCKETS_NOT_INITED 8101 | 76 #define VE_SOCKETS_NOT_INITED 8101 |
77 #define VE_CANNOT_GET_SOCKET_INFO 8102 | 77 #define VE_CANNOT_GET_SOCKET_INFO 8102 |
78 #define VE_INVALID_MULTICAST_ADDRESS 8103 | 78 #define VE_INVALID_MULTICAST_ADDRESS 8103 |
79 #define VE_DESTINATION_NOT_INITED 8104 | 79 #define VE_DESTINATION_NOT_INITED 8104 |
80 #define VE_RECEIVE_SOCKETS_CONFLICT 8105 | 80 #define VE_RECEIVE_SOCKETS_CONFLICT 8105 |
81 #define VE_SEND_SOCKETS_CONFLICT 8106 | 81 #define VE_SEND_SOCKETS_CONFLICT 8106 |
82 #define VE_TYPING_NOISE_WARNING 8107 | 82 #define VE_TYPING_NOISE_WARNING 8107 |
83 #define VE_SATURATION_WARNING 8108 | |
84 #define VE_NOISE_WARNING 8109 | 83 #define VE_NOISE_WARNING 8109 |
85 #define VE_CANNOT_GET_SEND_CODEC 8110 | 84 #define VE_CANNOT_GET_SEND_CODEC 8110 |
86 #define VE_CANNOT_GET_REC_CODEC 8111 | 85 #define VE_CANNOT_GET_REC_CODEC 8111 |
87 #define VE_ALREADY_INITED 8112 | 86 #define VE_ALREADY_INITED 8112 |
88 #define VE_CANNOT_SET_SECONDARY_SEND_CODEC 8113 | 87 #define VE_CANNOT_SET_SECONDARY_SEND_CODEC 8113 |
89 #define VE_CANNOT_GET_SECONDARY_SEND_CODEC 8114 | 88 #define VE_CANNOT_GET_SECONDARY_SEND_CODEC 8114 |
90 #define VE_CANNOT_REMOVE_SECONDARY_SEND_CODEC 8115 | 89 #define VE_CANNOT_REMOVE_SECONDARY_SEND_CODEC 8115 |
91 #define VE_TYPING_NOISE_OFF_WARNING 8116 | 90 #define VE_TYPING_NOISE_OFF_WARNING 8116 |
92 | 91 |
93 // Errors causing limited functionality | 92 // Errors causing limited functionality |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 #define VE_CANNOT_STOP_PLAYOUT 10031 | 156 #define VE_CANNOT_STOP_PLAYOUT 10031 |
158 #define VE_CANNOT_INIT_CHANNEL 10032 | 157 #define VE_CANNOT_INIT_CHANNEL 10032 |
159 #define VE_RECV_SOCKET_ERROR 10033 | 158 #define VE_RECV_SOCKET_ERROR 10033 |
160 #define VE_SOCKET_TRANSPORT_MODULE_ERROR 10034 | 159 #define VE_SOCKET_TRANSPORT_MODULE_ERROR 10034 |
161 #define VE_AUDIO_CONF_MIX_MODULE_ERROR 10035 | 160 #define VE_AUDIO_CONF_MIX_MODULE_ERROR 10035 |
162 | 161 |
163 // Warnings for other platforms (reserved range 8061-8080) | 162 // Warnings for other platforms (reserved range 8061-8080) |
164 #define VE_IGNORED_FUNCTION 8061 | 163 #define VE_IGNORED_FUNCTION 8061 |
165 | 164 |
166 #endif // WEBRTC_VOICE_ENGINE_VOE_ERRORS_H | 165 #endif // WEBRTC_VOICE_ENGINE_VOE_ERRORS_H |
OLD | NEW |