OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | |
3 * | |
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 | |
6 * tree. An additional intellectual property rights grant can be found | |
7 * in the file PATENTS. All contributing project authors may | |
8 * be found in the AUTHORS file in the root of the source tree. | |
9 */ | |
10 | |
11 #ifndef WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H | |
12 #define WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H | |
13 | |
14 #include <stdio.h> | |
15 #include <string> | |
16 | |
17 #include "webrtc/test/testsupport/fileutils.h" | |
18 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h" | |
19 | |
20 namespace webrtc { | |
21 namespace voetest { | |
22 | |
23 class SubAPIManager { | |
24 public: | |
25 SubAPIManager() | |
26 : _base(true), | |
27 _codec(false), | |
28 _file(false), | |
29 _hardware(false), | |
30 _network(false), | |
31 _rtp_rtcp(false), | |
32 _apm(false) { | |
33 _codec = true; | |
34 _file = true; | |
35 _hardware = true; | |
36 _network = true; | |
37 _rtp_rtcp = true; | |
38 _apm = true; | |
39 } | |
40 | |
41 void DisplayStatus() const; | |
42 | |
43 private: | |
44 bool _base, _codec; | |
45 bool _file, _hardware; | |
46 bool _network, _rtp_rtcp, _apm; | |
47 }; | |
48 | |
49 } // namespace voetest | |
50 } // namespace webrtc | |
51 | |
52 #endif // WEBRTC_VOICE_ENGINE_VOE_STANDARD_TEST_H | |
OLD | NEW |