OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 unsigned short targetLeveldBOv; | 460 unsigned short targetLeveldBOv; |
461 unsigned short digitalCompressionGaindB; | 461 unsigned short digitalCompressionGaindB; |
462 bool limiterEnable; | 462 bool limiterEnable; |
463 }; | 463 }; |
464 | 464 |
465 enum StereoChannel { kStereoLeft = 0, kStereoRight, kStereoBoth }; | 465 enum StereoChannel { kStereoLeft = 0, kStereoRight, kStereoBoth }; |
466 | 466 |
467 // Audio device layers | 467 // Audio device layers |
468 enum AudioLayers { | 468 enum AudioLayers { |
469 kAudioPlatformDefault = 0, | 469 kAudioPlatformDefault = 0, |
470 kAudioWindowsWave = 1, | |
471 kAudioWindowsCore = 2, | 470 kAudioWindowsCore = 2, |
472 kAudioLinuxAlsa = 3, | 471 kAudioLinuxAlsa = 3, |
473 kAudioLinuxPulse = 4 | 472 kAudioLinuxPulse = 4 |
474 }; | 473 }; |
475 | 474 |
476 // ================================================================== | 475 // ================================================================== |
477 // Video specific types | 476 // Video specific types |
478 // ================================================================== | 477 // ================================================================== |
479 | 478 |
480 // Raw video types | 479 // Raw video types |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
899 enum class RtcpMode { kOff, kCompound, kReducedSize }; | 898 enum class RtcpMode { kOff, kCompound, kReducedSize }; |
900 | 899 |
901 enum NetworkState { | 900 enum NetworkState { |
902 kNetworkUp, | 901 kNetworkUp, |
903 kNetworkDown, | 902 kNetworkDown, |
904 }; | 903 }; |
905 | 904 |
906 } // namespace webrtc | 905 } // namespace webrtc |
907 | 906 |
908 #endif // WEBRTC_COMMON_TYPES_H_ | 907 #endif // WEBRTC_COMMON_TYPES_H_ |
OLD | NEW |