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_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_ |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
| 15 #include <vector> |
15 | 16 |
16 #include "webrtc/base/constructormagic.h" | 17 #include "webrtc/base/constructormagic.h" |
17 #include "webrtc/base/criticalsection.h" | 18 #include "webrtc/base/criticalsection.h" |
18 #include "webrtc/common_audio/swap_queue.h" | 19 #include "webrtc/base/swap_queue.h" |
19 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 20 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
20 #include "webrtc/modules/audio_processing/render_queue_item_verifier.h" | 21 #include "webrtc/modules/audio_processing/render_queue_item_verifier.h" |
21 | 22 |
22 namespace webrtc { | 23 namespace webrtc { |
23 | 24 |
24 class AudioBuffer; | 25 class AudioBuffer; |
25 | 26 |
26 class EchoCancellationImpl : public EchoCancellation { | 27 class EchoCancellationImpl : public EchoCancellation { |
27 public: | 28 public: |
28 EchoCancellationImpl(rtc::CriticalSection* crit_render, | 29 EchoCancellationImpl(rtc::CriticalSection* crit_render, |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 | 108 |
108 std::vector<std::unique_ptr<Canceller>> cancellers_; | 109 std::vector<std::unique_ptr<Canceller>> cancellers_; |
109 std::unique_ptr<StreamProperties> stream_properties_; | 110 std::unique_ptr<StreamProperties> stream_properties_; |
110 | 111 |
111 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(EchoCancellationImpl); | 112 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(EchoCancellationImpl); |
112 }; | 113 }; |
113 | 114 |
114 } // namespace webrtc | 115 } // namespace webrtc |
115 | 116 |
116 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_ | 117 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_ |
OLD | NEW |