Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: webrtc/modules/audio_processing/aec3/block_processor.cc

Issue 2584493002: Added first layer of the echo canceller 3 functionality (Closed)
Patch Set: Restricted the AnalyzeRender access, added ability to add external reporting of echo failure, and o… Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698