Chromium Code Reviews| 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 #include "webrtc/modules/audio_processing/aec3/block_processor.h" | |
| 11 | |
| 12 #include "webrtc/base/optional.h" | |
| 13 | |
| 14 namespace webrtc { | |
| 15 | |
| 16 BlockProcessor::BlockProcessor(ApmDataDumper* data_dumper, | |
| 17 int sample_rate_hz, | |
| 18 size_t num_bands) { | |
| 19 // TODO(peah): Remove once the functionality is added. | |
| 20 (void)data_dumper; | |
| 21 (void)sample_rate_hz; | |
| 22 (void)num_bands; | |
|
ivoc
2016/12/19 11:30:21
I'm assuming this is to stop the compiler from com
peah-webrtc
2016/12/20 10:10:24
Yes, that was the intention. But I now see that it
| |
| 23 } | |
| 24 BlockProcessor::~BlockProcessor() = default; | |
| 25 | |
| 26 void BlockProcessor::ProcessCapture(bool known_echo_path_change, | |
| 27 bool saturated_microphone_signal, | |
| 28 rtc::ArrayView<float> capture_block) {} | |
| 29 | |
| 30 } // namespace webrtc | |
| OLD | NEW |