Lint fix for webrtc/modules/video_coding PART 2!
Trying to submit all changes at once proved impossible since there were too many changes in too many files. The changes to PRESUBMIT.py will be uploaded in the last CL. (original CL: https://codereview.webrtc.org/1528503003/) BUG=webrtc:5309 TBR=mflodman@webrtc.org Review URL: https://codereview.webrtc.org/1543503002 Cr-Commit-Position: refs/heads/master@{#11102}
This commit is contained in:
@ -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_;
|
||||
|
||||
Reference in New Issue
Block a user