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

Unified Diff: media/capture/video/video_capture_device_client.h

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: media/capture/video/video_capture_device_client.h
diff --git a/media/capture/video/video_capture_device_client.h b/media/capture/video/video_capture_device_client.h
index b01e080e38930dc2df167e31cd37a73bf9d48610..b36ebe5dd04245b972d4c7415d41b366f609c502 100644
--- a/media/capture/video/video_capture_device_client.h
+++ b/media/capture/video/video_capture_device_client.h
@@ -94,6 +94,13 @@ class CAPTURE_EXPORT VideoCaptureDeviceClient
uint8_t** u_plane_data,
uint8_t** v_plane_data);
+ // A branch of OnIncomingCapturedData for Y16 frame_format.pixel_format.
+ void OnIncomingCapturedY16Data(const uint8_t* data,
+ int length,
+ const VideoCaptureFormat& frame_format,
+ base::TimeTicks reference_time,
+ base::TimeDelta timestamp);
+
// The receiver to which we post events.
const std::unique_ptr<VideoFrameReceiver> receiver_;

Powered by Google App Engine
This is Rietveld 408576698