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 |
11 #ifndef SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ | 11 #ifndef SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ |
12 #define SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ | 12 #define SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ |
13 | 13 |
14 #include <assert.h> | |
15 | |
16 #include "webrtc/common.h" | |
17 #include "webrtc/common_types.h" | 14 #include "webrtc/common_types.h" |
18 #include "webrtc/engine_configurations.h" | 15 #include "webrtc/engine_configurations.h" |
19 #include "webrtc/voice_engine/include/voe_audio_processing.h" | 16 #include "webrtc/voice_engine/include/voe_audio_processing.h" |
20 #include "webrtc/voice_engine/include/voe_base.h" | 17 #include "webrtc/voice_engine/include/voe_base.h" |
21 #include "webrtc/voice_engine/include/voe_codec.h" | 18 #include "webrtc/voice_engine/include/voe_codec.h" |
22 #include "webrtc/voice_engine/include/voe_errors.h" | 19 #include "webrtc/voice_engine/include/voe_errors.h" |
23 #include "webrtc/voice_engine/include/voe_external_media.h" | 20 #include "webrtc/voice_engine/include/voe_external_media.h" |
24 #include "webrtc/voice_engine/include/voe_file.h" | 21 #include "webrtc/voice_engine/include/voe_file.h" |
25 #include "webrtc/voice_engine/include/voe_hardware.h" | 22 #include "webrtc/voice_engine/include/voe_hardware.h" |
26 #include "webrtc/voice_engine/include/voe_neteq_stats.h" | 23 #include "webrtc/voice_engine/include/voe_neteq_stats.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 webrtc::VoECodec* voe_codec_; | 55 webrtc::VoECodec* voe_codec_; |
59 webrtc::VoEVolumeControl* voe_volume_control_; | 56 webrtc::VoEVolumeControl* voe_volume_control_; |
60 webrtc::VoERTP_RTCP* voe_rtp_rtcp_; | 57 webrtc::VoERTP_RTCP* voe_rtp_rtcp_; |
61 webrtc::VoEAudioProcessing* voe_apm_; | 58 webrtc::VoEAudioProcessing* voe_apm_; |
62 webrtc::VoENetwork* voe_network_; | 59 webrtc::VoENetwork* voe_network_; |
63 webrtc::VoEFile* voe_file_; | 60 webrtc::VoEFile* voe_file_; |
64 webrtc::VoEVideoSync* voe_vsync_; | 61 webrtc::VoEVideoSync* voe_vsync_; |
65 webrtc::VoEHardware* voe_hardware_; | 62 webrtc::VoEHardware* voe_hardware_; |
66 webrtc::VoEExternalMedia* voe_xmedia_; | 63 webrtc::VoEExternalMedia* voe_xmedia_; |
67 webrtc::VoENetEqStats* voe_neteq_stats_; | 64 webrtc::VoENetEqStats* voe_neteq_stats_; |
68 webrtc::Config config_; | |
69 }; | 65 }; |
70 | 66 |
71 #endif // SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ | 67 #endif // SRC_VOICE_ENGINE_MAIN_TEST_AUTO_TEST_STANDARD_TEST_BASE_H_ |
OLD | NEW |