OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 WEBRTC_MEDIA_WEBRTC_WEBRTCVOE_H_ | 11 #ifndef WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_ |
12 #define WEBRTC_MEDIA_WEBRTC_WEBRTCVOE_H_ | 12 #define WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_ |
13 | 13 |
14 #include "webrtc/base/common.h" | 14 #include "webrtc/base/common.h" |
15 #include "webrtc/media/webrtc/webrtccommon.h" | 15 #include "webrtc/media/engine/webrtccommon.h" |
16 | 16 |
17 #include "webrtc/common_types.h" | 17 #include "webrtc/common_types.h" |
18 #include "webrtc/modules/audio_device/include/audio_device.h" | 18 #include "webrtc/modules/audio_device/include/audio_device.h" |
19 #include "webrtc/voice_engine/include/voe_audio_processing.h" | 19 #include "webrtc/voice_engine/include/voe_audio_processing.h" |
20 #include "webrtc/voice_engine/include/voe_base.h" | 20 #include "webrtc/voice_engine/include/voe_base.h" |
21 #include "webrtc/voice_engine/include/voe_codec.h" | 21 #include "webrtc/voice_engine/include/voe_codec.h" |
22 #include "webrtc/voice_engine/include/voe_errors.h" | 22 #include "webrtc/voice_engine/include/voe_errors.h" |
23 #include "webrtc/voice_engine/include/voe_hardware.h" | 23 #include "webrtc/voice_engine/include/voe_hardware.h" |
24 #include "webrtc/voice_engine/include/voe_network.h" | 24 #include "webrtc/voice_engine/include/voe_network.h" |
25 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" | 25 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 scoped_voe_ptr<webrtc::VoEAudioProcessing> processing_; | 109 scoped_voe_ptr<webrtc::VoEAudioProcessing> processing_; |
110 scoped_voe_ptr<webrtc::VoEBase> base_; | 110 scoped_voe_ptr<webrtc::VoEBase> base_; |
111 scoped_voe_ptr<webrtc::VoECodec> codec_; | 111 scoped_voe_ptr<webrtc::VoECodec> codec_; |
112 scoped_voe_ptr<webrtc::VoEHardware> hw_; | 112 scoped_voe_ptr<webrtc::VoEHardware> hw_; |
113 scoped_voe_ptr<webrtc::VoENetwork> network_; | 113 scoped_voe_ptr<webrtc::VoENetwork> network_; |
114 scoped_voe_ptr<webrtc::VoERTP_RTCP> rtp_; | 114 scoped_voe_ptr<webrtc::VoERTP_RTCP> rtp_; |
115 scoped_voe_ptr<webrtc::VoEVolumeControl> volume_; | 115 scoped_voe_ptr<webrtc::VoEVolumeControl> volume_; |
116 }; | 116 }; |
117 } // namespace cricket | 117 } // namespace cricket |
118 | 118 |
119 #endif // WEBRTC_MEDIA_WEBRTC_WEBRTCVOE_H_ | 119 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_ |
OLD | NEW |