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

Unified Diff: content/common/media/video_capture_messages.h

Issue 1849003002: Add video frame refresh to MediaStream and VideoCapture stacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed last round of comments from xjz and emircan. Created 4 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
Index: content/common/media/video_capture_messages.h
diff --git a/content/common/media/video_capture_messages.h b/content/common/media/video_capture_messages.h
index be1a179bda62c61b0e5bc782b2ee3e9a53b4c700..6961913eecfd6cfb8ba2350acaf54a09bb45ca37 100644
--- a/content/common/media/video_capture_messages.h
+++ b/content/common/media/video_capture_messages.h
@@ -108,6 +108,11 @@ IPC_MESSAGE_CONTROL3(VideoCaptureHostMsg_Resume,
media::VideoCaptureSessionId, /* session_id */
media::VideoCaptureParams /* params */)
+// Requests that the video capturer send a frame "soon" (e.g., to resolve
+// picture loss or quality issues).
+IPC_MESSAGE_CONTROL1(VideoCaptureHostMsg_RequestRefreshFrame,
+ int /* device_id */);
ncarter (slow) 2016/04/06 17:18:26 You'll need an IPC security rubber stamp for this
miu 2016/04/07 20:07:43 Acknowledged. Thanks for adding him for me.
+
// Close the video capture specified by |device_id|.
IPC_MESSAGE_CONTROL1(VideoCaptureHostMsg_Stop,
int /* device_id */)

Powered by Google App Engine
This is Rietveld 408576698