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

Unified Diff: content/browser/renderer_host/media/video_capture_manager.cc

Issue 2428263004: 16 bpp video stream capture, render and createImageBitmap(video) using (CPU) shared memory buffers (Closed)
Patch Set: Split webrtc_depth_capture_browsertest. Thanks phoglund@, Created 4 years, 1 month 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_manager.cc
diff --git a/content/browser/renderer_host/media/video_capture_manager.cc b/content/browser/renderer_host/media/video_capture_manager.cc
index daaa731f957afec1cbabe60072bd62d5394ec99a..8ce5a592c86f08c53164c1cfe74b518f0231e207 100644
--- a/content/browser/renderer_host/media/video_capture_manager.cc
+++ b/content/browser/renderer_host/media/video_capture_manager.cc
@@ -89,9 +89,10 @@ void ConsolidateCaptureFormats(media::VideoCaptureFormats* formats) {
formats->erase(last, formats->end());
// Mark all formats as I420, since this is what the renderer side will get
// anyhow: the actual pixel format is decided at the device level.
- for (media::VideoCaptureFormats::iterator it = formats->begin();
- it != formats->end(); ++it) {
- it->pixel_format = media::PIXEL_FORMAT_I420;
+ // Don't do this for Y16 format as it is handled separatelly.
+ for (auto& format : *formats) {
+ if (format.pixel_format != media::PIXEL_FORMAT_Y16)
+ format.pixel_format = media::PIXEL_FORMAT_I420;
}
}

Powered by Google App Engine
This is Rietveld 408576698