aboutsummaryrefslogtreecommitdiff
path: root/webrtc/tools
diff options
context:
space:
mode:
authorkjellander@webrtc.org <kjellander@webrtc.org>2015-01-28 13:52:08 +0000
committerkjellander@webrtc.org <kjellander@webrtc.org>2015-01-28 13:52:37 +0000
commit22c2f0572bc3bb65759795a19a4fc83da74a0531 (patch)
tree688a93b693aa0a89fb1fa13d81c761206745b9c5 /webrtc/tools
parent4aecd008dd26537daf1f9cc74b4cc80911f4b67d (diff)
downloadwebrtc-22c2f0572bc3bb65759795a19a4fc83da74a0531.tar.gz
Add "score" unit to SSIM perf score output.
Currently, the SSIM values don't have a unit, which makes them default to lower being better rather than the opposite (which is the case for SSIM). R=phoglund@webrtc.org BUG= Review URL: https://webrtc-codereview.appspot.com/41709004 Cr-Commit-Position: refs/heads/master@{#8183} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8183 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'webrtc/tools')
-rw-r--r--webrtc/tools/frame_analyzer/video_quality_analysis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webrtc/tools/frame_analyzer/video_quality_analysis.cc b/webrtc/tools/frame_analyzer/video_quality_analysis.cc
index c2a5e4991f..f5608c8343 100644
--- a/webrtc/tools/frame_analyzer/video_quality_analysis.cc
+++ b/webrtc/tools/frame_analyzer/video_quality_analysis.cc
@@ -356,7 +356,7 @@ void PrintAnalysisResults(FILE* output, const std::string& label,
++iter) {
fprintf(output, "%f,", iter->ssim_value);
}
- fprintf(output, "%f]\n", iter->ssim_value);
+ fprintf(output, "%f] score\n", iter->ssim_value);
}
}