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

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

Issue 3011943002: Move optional.h to webrtc/api/ (Closed)
Patch Set: Created 3 years, 3 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) 2017 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2017 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_MATCHED_FILTER_LAG_AGGREGATOR_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_MATCHED_FILTER_LAG_AGGREGATOR_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_MATCHED_FILTER_LAG_AGGREGATOR_H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_MATCHED_FILTER_LAG_AGGREGATOR_H_
13 13
14 #include <vector> 14 #include <vector>
15 15
16 #include "webrtc/api/optional.h"
16 #include "webrtc/modules/audio_processing/aec3/matched_filter.h" 17 #include "webrtc/modules/audio_processing/aec3/matched_filter.h"
17 #include "webrtc/rtc_base/constructormagic.h" 18 #include "webrtc/rtc_base/constructormagic.h"
18 #include "webrtc/rtc_base/optional.h"
19 19
20 namespace webrtc { 20 namespace webrtc {
21 21
22 class ApmDataDumper; 22 class ApmDataDumper;
23 23
24 // Aggregates lag estimates produced by the MatchedFilter class into a single 24 // Aggregates lag estimates produced by the MatchedFilter class into a single
25 // reliable combined lag estimate. 25 // reliable combined lag estimate.
26 class MatchedFilterLagAggregator { 26 class MatchedFilterLagAggregator {
27 public: 27 public:
28 MatchedFilterLagAggregator(ApmDataDumper* data_dumper, 28 MatchedFilterLagAggregator(ApmDataDumper* data_dumper,
(...skipping 11 matching lines...) Expand all
40 ApmDataDumper* const data_dumper_; 40 ApmDataDumper* const data_dumper_;
41 std::vector<size_t> lag_updates_in_a_row_; 41 std::vector<size_t> lag_updates_in_a_row_;
42 size_t candidate_ = 0; 42 size_t candidate_ = 0;
43 size_t candidate_counter_ = 0; 43 size_t candidate_counter_ = 0;
44 44
45 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MatchedFilterLagAggregator); 45 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(MatchedFilterLagAggregator);
46 }; 46 };
47 } // namespace webrtc 47 } // namespace webrtc
48 48
49 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_MATCHED_FILTER_LAG_AGGREGATOR_H_ 49 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_MATCHED_FILTER_LAG_AGGREGATOR_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/aec3/matched_filter.h ('k') | webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698