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 |
11 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H | 11 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H |
12 #define WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H | 12 #define WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H |
13 | 13 |
14 #include "webrtc/voice_engine/include/voe_base.h" | 14 #include "webrtc/voice_engine/include/voe_base.h" |
15 | 15 |
16 #include "webrtc/modules/interface/module_common_types.h" | 16 #include "webrtc/modules/include/module_common_types.h" |
17 #include "webrtc/voice_engine/shared_data.h" | 17 #include "webrtc/voice_engine/shared_data.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 | 20 |
21 class ProcessThread; | 21 class ProcessThread; |
22 | 22 |
23 class VoEBaseImpl : public VoEBase, | 23 class VoEBaseImpl : public VoEBase, |
24 public AudioTransport, | 24 public AudioTransport, |
25 public AudioDeviceObserver { | 25 public AudioDeviceObserver { |
26 public: | 26 public: |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 VoiceEngineObserver* voiceEngineObserverPtr_; | 125 VoiceEngineObserver* voiceEngineObserverPtr_; |
126 CriticalSectionWrapper& callbackCritSect_; | 126 CriticalSectionWrapper& callbackCritSect_; |
127 | 127 |
128 AudioFrame audioFrame_; | 128 AudioFrame audioFrame_; |
129 voe::SharedData* shared_; | 129 voe::SharedData* shared_; |
130 }; | 130 }; |
131 | 131 |
132 } // namespace webrtc | 132 } // namespace webrtc |
133 | 133 |
134 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H | 134 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H |
OLD | NEW |