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

Side by Side Diff: webrtc/modules/audio_processing/echo_control_mobile_impl.h

Issue 1772553002: Removed the ProcessingComponent class (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@RemoveComponentFromAGC_CL
Patch Set: Fixed changed include Created 4 years, 9 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) 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_CONTROL_MOBILE_IMPL_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CONTROL_MOBILE_IMPL_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CONTROL_MOBILE_IMPL_H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CONTROL_MOBILE_IMPL_H_
13 13
14 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/base/constructormagic.h" 16 #include "webrtc/base/constructormagic.h"
17 #include "webrtc/base/criticalsection.h" 17 #include "webrtc/base/criticalsection.h"
18 #include "webrtc/common_audio/swap_queue.h" 18 #include "webrtc/common_audio/swap_queue.h"
19 #include "webrtc/modules/audio_processing/include/audio_processing.h" 19 #include "webrtc/modules/audio_processing/include/audio_processing.h"
20 #include "webrtc/modules/audio_processing/processing_component.h" 20 #include "webrtc/modules/audio_processing/render_queue_item_verifier.h"
21 21
22 namespace webrtc { 22 namespace webrtc {
23 23
24 class AudioBuffer; 24 class AudioBuffer;
25 25
26 class EchoControlMobileImpl : public EchoControlMobile { 26 class EchoControlMobileImpl : public EchoControlMobile {
27 public: 27 public:
28 EchoControlMobileImpl(const AudioProcessing* apm, 28 EchoControlMobileImpl(const AudioProcessing* apm,
29 rtc::CriticalSection* crit_render, 29 rtc::CriticalSection* crit_render,
30 rtc::CriticalSection* crit_capture); 30 rtc::CriticalSection* crit_capture);
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 std::unique_ptr< 82 std::unique_ptr<
83 SwapQueue<std::vector<int16_t>, RenderQueueItemVerifier<int16_t>>> 83 SwapQueue<std::vector<int16_t>, RenderQueueItemVerifier<int16_t>>>
84 render_signal_queue_; 84 render_signal_queue_;
85 85
86 std::vector<std::unique_ptr<Canceller>> cancellers_; 86 std::vector<std::unique_ptr<Canceller>> cancellers_;
87 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(EchoControlMobileImpl); 87 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(EchoControlMobileImpl);
88 }; 88 };
89 } // namespace webrtc 89 } // namespace webrtc
90 90
91 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CONTROL_MOBILE_IMPL_H_ 91 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CONTROL_MOBILE_IMPL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/echo_cancellation_impl.h ('k') | webrtc/modules/audio_processing/gain_control_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698