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

Unified Diff: webrtc/modules/video_coding/content_metrics_processing.h

Issue 1528503003: Lint enabled for webrtc/modules/video_coding folder. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase Created 5 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_coding/content_metrics_processing.h
diff --git a/webrtc/modules/video_coding/content_metrics_processing.h b/webrtc/modules/video_coding/content_metrics_processing.h
index 3517f757d46ee9dad5c051c93d14205971d94b6b..3f67ec19c98b725915e26a71fcc8bab865d49f18 100644
--- a/webrtc/modules/video_coding/content_metrics_processing.h
+++ b/webrtc/modules/video_coding/content_metrics_processing.h
@@ -18,14 +18,10 @@ namespace webrtc {
struct VideoContentMetrics;
// QM interval time (in ms)
-enum {
- kQmMinIntervalMs = 10000
-};
+enum { kQmMinIntervalMs = 10000 };
// Flag for NFD metric vs motion metric
-enum {
- kNfdMetric = 1
-};
+enum { kNfdMetric = 1 };
/**********************************/
/* Content Metrics Processing */
@@ -36,7 +32,7 @@ class VCMContentMetricsProcessing {
~VCMContentMetricsProcessing();
// Update class with latest metrics.
- int UpdateContentData(const VideoContentMetrics *contentMetrics);
+ int UpdateContentData(const VideoContentMetrics* contentMetrics);
// Reset the short-term averaged content data.
void ResetShortTermAvgData();
@@ -57,13 +53,13 @@ class VCMContentMetricsProcessing {
private:
// Compute working average.
- int ProcessContent(const VideoContentMetrics *contentMetrics);
+ int ProcessContent(const VideoContentMetrics* contentMetrics);
// Update the recursive averaged metrics: longer time average (~5/10 secs).
- void UpdateRecursiveAvg(const VideoContentMetrics *contentMetrics);
+ void UpdateRecursiveAvg(const VideoContentMetrics* contentMetrics);
// Update the uniform averaged metrics: shorter time average (~RTCP report).
- void UpdateUniformAvg(const VideoContentMetrics *contentMetrics);
+ void UpdateUniformAvg(const VideoContentMetrics* contentMetrics);
VideoContentMetrics* recursive_avg_;
VideoContentMetrics* uniform_avg_;
« no previous file with comments | « webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc ('k') | webrtc/modules/video_coding/content_metrics_processing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698