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

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

Issue 2121043002: 16 bpp video stream capture, render and WebGL usage - Realsense R200 & SR300 support. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tests: cc, skcanvas_video_renderer, wrtcrecorder... Fake capture supports Y16. Created 4 years, 3 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_device_client_unittest.cc
diff --git a/content/browser/renderer_host/media/video_capture_device_client_unittest.cc b/content/browser/renderer_host/media/video_capture_device_client_unittest.cc
index c944647d6b99889ff76fd991ecf1f7c03eabb6ab..8c727dd1ec164b882cd472d886f72b26780a68b0 100644
--- a/content/browser/renderer_host/media/video_capture_device_client_unittest.cc
+++ b/content/browser/renderer_host/media/video_capture_device_client_unittest.cc
@@ -166,7 +166,9 @@ TEST_F(VideoCaptureDeviceClientTest, DataCaptureGoodPixelFormats) {
media::PIXEL_FORMAT_RGB24,
#endif
media::PIXEL_FORMAT_RGB32,
- media::PIXEL_FORMAT_ARGB
+ media::PIXEL_FORMAT_ARGB,
+ media::PIXEL_FORMAT_Y8,
+ media::PIXEL_FORMAT_Y16,
};
for (media::VideoPixelFormat format : kSupportedFormats) {

Powered by Google App Engine
This is Rietveld 408576698