Rename "average_freeze_duration" metric to "freeze_duration_average"

It's more convenient to have it next to other freeze-related metrics
when sorted alphabetically.

Bug: None
Change-Id: I8f73e32a9cdb8166e139c193ffcd1dcc1fa18533
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/135563
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Commit-Queue: Elad Alon <eladalon@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27874}
This commit is contained in:
Elad Alon 2019-05-08 09:51:56 +02:00 committed by Commit Bot
parent fe4f6942ef
commit 133f7e768a

View File

@ -659,7 +659,7 @@ void VideoAnalyzer::PrintResults() {
}
}
test::PrintResult("average_freeze_duration", "", test_label_.c_str(),
test::PrintResult("freeze_duration_average", "", test_label_.c_str(),
freeze_count_double > 0
? total_freezes_duration_ms_double / freeze_count_double
: 0,