OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2016 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_MODULES_AUDIO_PROCESSING_AEC3_BLOCK_PROCESSOR_H_ | |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_BLOCK_PROCESSOR_H_ | |
13 | |
14 #include <memory> | |
15 | |
16 #include "webrtc/base/array_view.h" | |
17 #include "webrtc/base/constructormagic.h" | |
18 #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" | |
19 | |
20 namespace webrtc { | |
21 | |
22 /* Class for performing echo cancellation on 64 sample blocks of audio data */ | |
hlundin-webrtc
2016/12/16 10:04:46
// style
peah-webrtc
2016/12/20 10:10:24
Done.
| |
23 class BlockProcessor { | |
24 public: | |
25 BlockProcessor(ApmDataDumper* data_dumper, | |
26 int sample_rate_hz, | |
27 size_t num_bands); | |
28 ~BlockProcessor(); | |
29 | |
30 /* Processes a block of capture data */ | |
hlundin-webrtc
2016/12/16 10:04:46
// style
peah-webrtc
2016/12/20 10:10:24
Done.
| |
31 void ProcessCapture(bool known_echo_path_change, | |
32 bool saturated_microphone_signal, | |
33 rtc::ArrayView<float> capture_block); | |
34 | |
35 /* Buffers a block of render data supplied by a FrameBlocker object */ | |
hlundin-webrtc
2016/12/16 10:04:46
// style
peah-webrtc
2016/12/20 10:10:24
Done.
| |
36 template <typename F> | |
37 bool BufferRender(F&& blocker) { | |
aleloi
2016/12/16 15:04:31
Perhaps change type to std::function<void(ArrayVie
peah-webrtc
2016/12/20 10:10:24
That are definitely valid points! I addressed thes
| |
38 // Use blocker to access render data. | |
39 return true; | |
40 } | |
41 | |
42 void ReportEchoLeakage(bool leakage_detected) {} | |
43 | |
44 private: | |
45 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(BlockProcessor); | |
46 }; | |
47 | |
48 } // namespace webrtc | |
49 | |
50 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_BLOCK_PROCESSOR_H_ | |
OLD | NEW |