Commit c9721529 authored by phoglund's avatar phoglund Committed by Commit bot

Adding expand / secondary decode rate to WebRTC regression monitoring.

BUG=464277

Review URL: https://codereview.chromium.org/980373002

Cr-Commit-Position: refs/heads/master@{#319627}
parent e492d236
......@@ -36,6 +36,19 @@ static bool MaybePrintResultsForAudioReceive(
perf_test::PrintResult(
"audio_misc", modifier, "packets_lost", value, "frames", false);
EXPECT_TRUE(pc_dict.GetString(Statistic("googExpandRate", ssrc), &value));
perf_test::PrintResult(
"audio_rates", modifier, "goog_expand_rate", value, "%", false);
EXPECT_TRUE(
pc_dict.GetString(Statistic("googSpeechExpandRate", ssrc), &value));
perf_test::PrintResult(
"audio_rates", modifier, "goog_speech_expand_rate", value, "%", false);
EXPECT_TRUE(
pc_dict.GetString(Statistic("googSecondaryDecodedRate", ssrc), &value));
perf_test::PrintResult(
"audio_rates", modifier, "goog_secondary_decoded_rate", value, "%",
false);
return true;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment