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

Unified Diff: content/browser/renderer_host/media/video_capture_controller.h

Issue 1157193002: RESOURCE_UTILIZATION in VideoFrameMetadata, a consumer feedback signal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@video_frame_done_callback
Patch Set: Addressed hubbe's round 2 comments, and REBASE. Created 5 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
Index: content/browser/renderer_host/media/video_capture_controller.h
diff --git a/content/browser/renderer_host/media/video_capture_controller.h b/content/browser/renderer_host/media/video_capture_controller.h
index 0dd86842f6f91520b23b6671ec5ad8192f9f28d2..ee5f6f3e906c9bb1da7503df5bd0c2f054cab3d3 100644
--- a/content/browser/renderer_host/media/video_capture_controller.h
+++ b/content/browser/renderer_host/media/video_capture_controller.h
@@ -108,11 +108,13 @@ class CONTENT_EXPORT VideoCaptureController {
// VideoCaptureControllerEventHandler::OnBufferReady. In the case that the
// buffer was backed by a texture, |sync_point| will be waited on before
// destroying or recycling the texture, to synchronize with texture users in
- // the renderer process.
+ // the renderer process. If the consumer provided resource utilization
+ // feedback, this will be passed here (-1.0 indicates no feedback).
void ReturnBuffer(VideoCaptureControllerID id,
VideoCaptureControllerEventHandler* event_handler,
int buffer_id,
- uint32 sync_point);
+ uint32 sync_point,
+ double consumer_resource_utilization);
const media::VideoCaptureFormat& GetVideoCaptureFormat() const;

Powered by Google App Engine
This is Rietveld 408576698