Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3827)

Unified Diff: media/cast/sender/video_encoder_unittest.cc

Issue 2103043005: media/cast/sender: Rename deadline_utilization to encoder_utilization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/sender/sender_encoded_frame.cc ('k') | media/cast/sender/video_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/sender/video_encoder_unittest.cc
diff --git a/media/cast/sender/video_encoder_unittest.cc b/media/cast/sender/video_encoder_unittest.cc
index 0941778d8ffd00d895331ada246d710151be890d..b907e3c0ccbac70ebe0d87fed8f3fa1ac0a5f40f 100644
--- a/media/cast/sender/video_encoder_unittest.cc
+++ b/media/cast/sender/video_encoder_unittest.cc
@@ -253,8 +253,8 @@ class VideoEncoderTest
EXPECT_EQ(expected_last_referenced_frame_id,
encoded_frame->referenced_frame_id);
EXPECT_FALSE(encoded_frame->data.empty());
- ASSERT_TRUE(std::isfinite(encoded_frame->deadline_utilization));
- EXPECT_LE(0.0, encoded_frame->deadline_utilization);
+ ASSERT_TRUE(std::isfinite(encoded_frame->encoder_utilization));
+ EXPECT_LE(0.0, encoded_frame->encoder_utilization);
ASSERT_TRUE(std::isfinite(encoded_frame->lossy_utilization));
EXPECT_LE(0.0, encoded_frame->lossy_utilization);
}
« no previous file with comments | « media/cast/sender/sender_encoded_frame.cc ('k') | media/cast/sender/video_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698