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

Unified Diff: media/base/video_frame_metadata.h

Issue 1484403002: cast: Support for low-latency interactive mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
Index: media/base/video_frame_metadata.h
diff --git a/media/base/video_frame_metadata.h b/media/base/video_frame_metadata.h
index 48fe509719fc9e3f724086903af85a7845b709cf..bf05ef73916cfcdf21d0023e5828c484406e96a0 100644
--- a/media/base/video_frame_metadata.h
+++ b/media/base/video_frame_metadata.h
@@ -5,6 +5,8 @@
#ifndef MEDIA_BASE_VIDEO_FRAME_METADATA_H_
#define MEDIA_BASE_VIDEO_FRAME_METADATA_H_
+#include <string>
+
#include "base/compiler_specific.h"
#include "base/time/time.h"
#include "base/values.h"
@@ -77,6 +79,14 @@ class MEDIA_EXPORT VideoFrameMetadata {
// measurements would be used as feedback.
RESOURCE_UTILIZATION,
+ // This is a boolean that signals that the video capture engine detects
+ // interactive content. One possible optimization that this signal can help
+ // with is adjusting end-to-end latency based on whether the mode is turned
miu 2015/12/03 21:26:23 For a bit more clarity for those unfamiliar with m
Irfan 2015/12/04 22:45:37 Done.
+ // on or off.
+ //
+ // Use Get/SetBoolean for this key.
+ INTERACTIVE_MODE,
miu 2015/12/03 21:26:23 1. naming nit: How about INTERACTIVE_CONTENT? (i.
Irfan 2015/12/04 22:45:37 Done.
+
NUM_KEYS
};

Powered by Google App Engine
This is Rietveld 408576698