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

Side by Side Diff: webrtc/modules/audio_processing/aec3/echo_canceller3.h

Issue 2964773002: Revert "Update includes for webrtc/{base => rtc_base} rename (1/3)" (Closed)
Patch Set: Created 3 years, 5 months 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
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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_AEC3_ECHO_CANCELLER3_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_CANCELLER3_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_CANCELLER3_H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_CANCELLER3_H_
13 13
14 #include "webrtc/base/constructormagic.h"
15 #include "webrtc/base/race_checker.h"
16 #include "webrtc/base/swap_queue.h"
14 #include "webrtc/modules/audio_processing/aec3/block_framer.h" 17 #include "webrtc/modules/audio_processing/aec3/block_framer.h"
15 #include "webrtc/modules/audio_processing/aec3/block_processor.h" 18 #include "webrtc/modules/audio_processing/aec3/block_processor.h"
16 #include "webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h" 19 #include "webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h"
17 #include "webrtc/modules/audio_processing/aec3/frame_blocker.h" 20 #include "webrtc/modules/audio_processing/aec3/frame_blocker.h"
18 #include "webrtc/modules/audio_processing/audio_buffer.h" 21 #include "webrtc/modules/audio_processing/audio_buffer.h"
19 #include "webrtc/modules/audio_processing/include/audio_processing.h" 22 #include "webrtc/modules/audio_processing/include/audio_processing.h"
20 #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" 23 #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h"
21 #include "webrtc/rtc_base/constructormagic.h"
22 #include "webrtc/rtc_base/race_checker.h"
23 #include "webrtc/rtc_base/swap_queue.h"
24 24
25 namespace webrtc { 25 namespace webrtc {
26 26
27 // Functor for verifying the invariance of the frames being put into the render 27 // Functor for verifying the invariance of the frames being put into the render
28 // queue. 28 // queue.
29 class Aec3RenderQueueItemVerifier { 29 class Aec3RenderQueueItemVerifier {
30 public: 30 public:
31 explicit Aec3RenderQueueItemVerifier(size_t num_bands, size_t frame_length) 31 explicit Aec3RenderQueueItemVerifier(size_t num_bands, size_t frame_length)
32 : num_bands_(num_bands), frame_length_(frame_length) {} 32 : num_bands_(num_bands), frame_length_(frame_length) {}
33 33
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 bool saturated_microphone_signal_ GUARDED_BY(capture_race_checker_) = false; 127 bool saturated_microphone_signal_ GUARDED_BY(capture_race_checker_) = false;
128 std::vector<std::vector<float>> block_ GUARDED_BY(capture_race_checker_); 128 std::vector<std::vector<float>> block_ GUARDED_BY(capture_race_checker_);
129 std::vector<rtc::ArrayView<float>> sub_frame_view_ 129 std::vector<rtc::ArrayView<float>> sub_frame_view_
130 GUARDED_BY(capture_race_checker_); 130 GUARDED_BY(capture_race_checker_);
131 131
132 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(EchoCanceller3); 132 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(EchoCanceller3);
133 }; 133 };
134 } // namespace webrtc 134 } // namespace webrtc
135 135
136 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_CANCELLER3_H_ 136 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_CANCELLER3_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/aec3/decimator_by_4.cc ('k') | webrtc/modules/audio_processing/aec3/echo_canceller3.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698