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

Unified Diff: content/renderer/media/video_capture_impl.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
« no previous file with comments | « content/common/media/video_capture_messages.h ('k') | content/renderer/media/video_capture_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/video_capture_impl.h
diff --git a/content/renderer/media/video_capture_impl.h b/content/renderer/media/video_capture_impl.h
index 51933a87d1a705e831b12e5ce73b062e2c4cdee2..39b3af9d1fa16487df00349bbc1a1fa021865a87 100644
--- a/content/renderer/media/video_capture_impl.h
+++ b/content/renderer/media/video_capture_impl.h
@@ -129,7 +129,8 @@ class CONTENT_EXPORT VideoCaptureImpl
// buffer.
void OnClientBufferFinished(int buffer_id,
const scoped_refptr<ClientBuffer>& buffer,
- uint32 release_sync_point);
+ uint32 release_sync_point,
+ double consumer_resource_utilization);
void StopDevice();
void RestartCapture();
@@ -140,6 +141,15 @@ class CONTENT_EXPORT VideoCaptureImpl
// Helpers.
bool RemoveClient(int client_id, ClientInfoMap* clients);
+ // Called (by an unknown thread) when all consumers are done with a VideoFrame
+ // and its ref-count has gone to zero. This helper function grabs the
+ // RESOURCE_UTILIZATION value from the |metadata| and then runs the given
+ // callback, to trampoline back to the IO thread with the values.
+ static void DidFinishConsumingFrame(
+ const media::VideoFrameMetadata* metadata,
+ uint32* release_sync_point_storage, // Takes ownership.
+ const base::Callback<void(uint32, double)>& callback_to_io_thread);
+
const scoped_refptr<VideoCaptureMessageFilter> message_filter_;
int device_id_;
const int session_id_;
« no previous file with comments | « content/common/media/video_capture_messages.h ('k') | content/renderer/media/video_capture_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698