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

Unified Diff: media/cast/logging/stats_event_subscriber_unittest.cc

Issue 228603006: Cast: Log whether the video frame is a key frame in kVideoFrameEncoded (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win x64 compile Created 6 years, 8 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/logging/simple_event_subscriber_unittest.cc ('k') | media/cast/video_sender/video_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/logging/stats_event_subscriber_unittest.cc
diff --git a/media/cast/logging/stats_event_subscriber_unittest.cc b/media/cast/logging/stats_event_subscriber_unittest.cc
index 9af336974a12e82c452792697d8476243e98c9ef..8f4d0c5271154d83ef98df8acb0beb03a40862f8 100644
--- a/media/cast/logging/stats_event_subscriber_unittest.cc
+++ b/media/cast/logging/stats_event_subscriber_unittest.cc
@@ -57,8 +57,8 @@ TEST_F(StatsEventSubscriberTest, FrameStats) {
now, kVideoFrameReceived, rtp_timestamp, frame_id);
testing_clock_->Advance(base::TimeDelta::FromMilliseconds(30));
- cast_environment_->Logging()->InsertFrameEventWithSize(
- now, kVideoFrameEncoded, rtp_timestamp, i, frame_size);
+ cast_environment_->Logging()->InsertEncodedFrameEvent(
+ now, kVideoFrameEncoded, rtp_timestamp, i, frame_size, true);
testing_clock_->Advance(base::TimeDelta::FromMilliseconds(30));
cast_environment_->Logging()->InsertFrameEventWithDelay(
« no previous file with comments | « media/cast/logging/simple_event_subscriber_unittest.cc ('k') | media/cast/video_sender/video_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698