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

Unified Diff: media/cast/logging/proto/raw_events.proto

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/logging_raw_unittest.cc ('k') | media/cast/logging/simple_event_subscriber_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/logging/proto/raw_events.proto
diff --git a/media/cast/logging/proto/raw_events.proto b/media/cast/logging/proto/raw_events.proto
index afca046437553adb40d5cb22140dc6201027f227..7ead104eb446020f8cc4951053ce4220bc68addf 100644
--- a/media/cast/logging/proto/raw_events.proto
+++ b/media/cast/logging/proto/raw_events.proto
@@ -77,11 +77,14 @@ message AggregatedFrameEvent {
repeated EventType event_type = 2 [packed = true];
repeated int64 event_timestamp_ms = 3 [packed = true];
- // Size is set only for kAudioFrameEncoded and kVideoFrameEncoded.
+ // Only set if there is a kAudioFrameEncoded and kVideoFrameEncoded event.
optional int32 encoded_frame_size = 4;
- // Delay is only set for kAudioPlayoutDelay and kVideoRenderDelay.
+ // Only set if there is a kAudioPlayoutDelay or kVideoRenderDelay event.
optional int32 delay_millis = 5;
+
+ // Only set if there is a kVideoFrameEncoded event.
+ optional bool key_frame = 6;
};
message BasePacketEvent {
« no previous file with comments | « media/cast/logging/logging_raw_unittest.cc ('k') | media/cast/logging/simple_event_subscriber_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698