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 15 matching lines...) Expand all Loading... |
26 | 26 |
27 namespace voetest { | 27 namespace voetest { |
28 | 28 |
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), | |
37 _network(false), | 36 _network(false), |
38 _rtp_rtcp(false), | 37 _rtp_rtcp(false), |
39 _apm(false) { | 38 _apm(false) { |
40 _codec = true; | 39 _codec = true; |
41 _file = true; | 40 _file = true; |
42 _hardware = true; | 41 _hardware = true; |
43 _netEqStats = true; | |
44 _network = true; | 42 _network = true; |
45 _rtp_rtcp = true; | 43 _rtp_rtcp = true; |
46 _apm = true; | 44 _apm = true; |
47 } | 45 } |
48 | 46 |
49 void DisplayStatus() const; | 47 void DisplayStatus() const; |
50 | 48 |
51 private: | 49 private: |
52 bool _base, _codec; | 50 bool _base, _codec; |
53 bool _file, _hardware; | 51 bool _file, _hardware; |
54 bool _netEqStats, _network, _rtp_rtcp, _apm; | 52 bool _network, _rtp_rtcp, _apm; |
55 }; | 53 }; |
56 | 54 |
57 } // namespace voetest | 55 } // namespace voetest |
58 | 56 |
59 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H | 57 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H |
OLD | NEW |