From 3123cbc489cc4d51e74f0cd16f7c9037c5eb77a4 Mon Sep 17 00:00:00 2001 From: tnakamura Date: Wed, 10 Feb 2016 11:21:51 -0800 Subject: [PATCH] Associate "score" attribute with SSIM so that future perf graphs know that an increase in SSIM should be considered an improvement. BUG=chromium:582009 Review URL: https://codereview.webrtc.org/1688503003 Cr-Commit-Position: refs/heads/master@{#11558} --- webrtc/video/video_quality_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/video/video_quality_test.cc b/webrtc/video/video_quality_test.cc index 2ebbde987c..4e39514301 100644 --- a/webrtc/video/video_quality_test.cc +++ b/webrtc/video/video_quality_test.cc @@ -474,7 +474,7 @@ class VideoAnalyzer : public PacketReceiver, void PrintResults() { rtc::CritScope crit(&comparison_lock_); PrintResult("psnr", psnr_, " dB"); - PrintResult("ssim", ssim_, ""); + PrintResult("ssim", ssim_, " score"); PrintResult("sender_time", sender_time_, " ms"); printf("RESULT dropped_frames: %s = %d frames\n", test_label_.c_str(), dropped_frames_);