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}
This commit is contained in:
tnakamura 2016-02-10 11:21:51 -08:00 committed by Commit bot
parent 84d1f126d3
commit 3123cbc489

View File

@ -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_);