From d658edeeedf1efd50a373f0ec90dfd54ce955527 Mon Sep 17 00:00:00 2001 From: brandtr Date: Tue, 12 Jul 2016 04:53:04 -0700 Subject: [PATCH] Report Unique_frames_count from frame_analyzer using 'score' units. With this change, an increase in Unique_frames_count will be marked as an improvement (rather than a deterioration) in the Chrome Performance Dashboard. BUG=chromium:623521 R=phoglund@webrtc.org Review-Url: https://codereview.webrtc.org/2142813002 Cr-Commit-Position: refs/heads/master@{#13444} --- webrtc/tools/frame_analyzer/video_quality_analysis.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/tools/frame_analyzer/video_quality_analysis.cc b/webrtc/tools/frame_analyzer/video_quality_analysis.cc index dfd57f1961..b28a5d2def 100644 --- a/webrtc/tools/frame_analyzer/video_quality_analysis.cc +++ b/webrtc/tools/frame_analyzer/video_quality_analysis.cc @@ -351,7 +351,7 @@ void PrintAnalysisResults(FILE* output, const std::string& label, ResultsContainer* results) { std::vector::iterator iter; - fprintf(output, "RESULT Unique_frames_count: %s= %u\n", label.c_str(), + fprintf(output, "RESULT Unique_frames_count: %s= %u score\n", label.c_str(), static_cast(results->frames.size())); if (results->frames.size() > 0u) {