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 18 matching lines...) Expand all Loading... |
29 class SubAPIManager { | 29 class SubAPIManager { |
30 public: | 30 public: |
31 SubAPIManager() | 31 SubAPIManager() |
32 : _base(true), | 32 : _base(true), |
33 _codec(false), | 33 _codec(false), |
34 _file(false), | 34 _file(false), |
35 _hardware(false), | 35 _hardware(false), |
36 _netEqStats(false), | 36 _netEqStats(false), |
37 _network(false), | 37 _network(false), |
38 _rtp_rtcp(false), | 38 _rtp_rtcp(false), |
39 _volumeControl(false), | |
40 _apm(false) { | 39 _apm(false) { |
41 _codec = true; | 40 _codec = true; |
42 _file = true; | 41 _file = true; |
43 _hardware = true; | 42 _hardware = true; |
44 _netEqStats = true; | 43 _netEqStats = true; |
45 _network = true; | 44 _network = true; |
46 _rtp_rtcp = true; | 45 _rtp_rtcp = true; |
47 _volumeControl = true; | |
48 _apm = true; | 46 _apm = true; |
49 } | 47 } |
50 | 48 |
51 void DisplayStatus() const; | 49 void DisplayStatus() const; |
52 | 50 |
53 private: | 51 private: |
54 bool _base, _codec; | 52 bool _base, _codec; |
55 bool _file, _hardware; | 53 bool _file, _hardware; |
56 bool _netEqStats, _network, _rtp_rtcp, _volumeControl, _apm; | 54 bool _netEqStats, _network, _rtp_rtcp, _apm; |
57 }; | 55 }; |
58 | 56 |
59 } // namespace voetest | 57 } // namespace voetest |
60 | 58 |
61 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H | 59 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H |
OLD | NEW |