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

Unified Diff: content/browser/media/capture/content_video_capture_device_core.cc

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/media/capture/content_video_capture_device_core.cc
diff --git a/content/browser/media/capture/content_video_capture_device_core.cc b/content/browser/media/capture/content_video_capture_device_core.cc
index 96cef236741e8a6c56693925102fd16bd7664eb1..edfe2e50ca0ca1ffcd23e6413a430d8ca093de33 100644
--- a/content/browser/media/capture/content_video_capture_device_core.cc
+++ b/content/browser/media/capture/content_video_capture_device_core.cc
@@ -21,7 +21,6 @@
#include "base/time/time.h"
#include "base/trace_event/trace_event.h"
#include "content/public/browser/browser_thread.h"
-#include "media/base/bind_to_current_loop.h"
#include "media/base/video_capture_types.h"
#include "media/base/video_frame.h"
#include "media/base/video_frame_metadata.h"
@@ -188,10 +187,34 @@ void ThreadSafeCaptureOracle::DidCaptureFrame(
media::VideoFrameMetadata::CAPTURE_END_TIME, base::TimeTicks::Now());
frame->metadata()->SetTimeDelta(media::VideoFrameMetadata::FRAME_DURATION,
estimated_frame_duration);
+
+ frame->AddDestructionObserver(base::Bind(
+ &ThreadSafeCaptureOracle::DidConsumeFrame,
+ this,
+ frame_number,
+ frame->metadata()));
+
client_->OnIncomingCapturedVideoFrame(buffer.Pass(), frame, timestamp);
}
}
+void ThreadSafeCaptureOracle::DidConsumeFrame(
+ int frame_number,
+ const media::VideoFrameMetadata* metadata) {
+ // Note: This function may be called on any thread by the VideoFrame
+ // destructor. |metadata| is still valid for read-access at this point.
+ double utilization = -1.0;
+ if (metadata->GetDouble(media::VideoFrameMetadata::RESOURCE_UTILIZATION,
+ &utilization) &&
+ utilization >= 0.0) {
+ VLOG(2) << "Consumer resource utilization for frame " << frame_number
+ << ": " << utilization;
+ }
+
+ // TODO(miu): Use |utilization| to drive automatic video resolution changes.
+ // http://crbug.com/156767.
+}
+
void ContentVideoCaptureDeviceCore::AllocateAndStart(
const media::VideoCaptureParams& params,
scoped_ptr<media::VideoCaptureDevice::Client> client) {

Powered by Google App Engine
This is Rietveld 408576698