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

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

Issue 2722453002: Adding metrics to AEC3 (Closed)
Patch Set: Created 3 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
(Empty)
1 /*
2 * Copyright (c) 2017 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
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RENDER_DELAY_CONTROLLER_METRICS_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RENDER_DELAY_CONTROLLER_METRICS_H_
13
14 #include "webrtc/base/constructormagic.h"
15 #include "webrtc/base/optional.h"
16
17 namespace webrtc {
18
19 // Handles the reporting of metrics for the render delay controller.
20 class RenderDelayControllerMetrics {
21 public:
22 RenderDelayControllerMetrics();
23
24 // Updates the metric with new data.
25 void Update(rtc::Optional<size_t> delay_samples, size_t buffer_delay_blocks);
26
27 // Returns true if the metrics has just been reported, otherwise false.
hlundin-webrtc 2017/02/28 10:04:23 has -> have
peah-webrtc 2017/02/28 12:57:26 Done.
28 bool MetricsReported() { return metric_reported_; }
29
30 private:
31 // Resets the metrics.
32 void ResetMetrics();
33
34 size_t delay_blocks_ = 0;
35 int reliable_delay_estimate_counter_ = 0;
36 int delay_change_counter_ = 0;
37 int call_counter_ = 0;
38 int initial_call_counter_ = 0;
39 bool metric_reported_ = false;
hlundin-webrtc 2017/02/28 10:04:23 metrics_reported_
peah-webrtc 2017/02/28 12:57:26 Done.
40 bool initial_update = true;
41
42 RTC_DISALLOW_COPY_AND_ASSIGN(RenderDelayControllerMetrics);
43 };
44
45 } // namespace webrtc
46
47 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RENDER_DELAY_CONTROLLER_METRICS_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698