Chromium Code Reviews

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

Issue 2398463003: 16 bit capture and GPU&CPU memory buffer support.
Patch Set: fixes. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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 507af1613869315663c0144c6b63216085fb179b..51db15c1cfe46bda33a40ee0899d1ed7b72513f0 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
@@ -167,7 +167,8 @@ TEST_F(VideoCaptureDeviceClientTest, DataCaptureGoodPixelFormats) {
media::PIXEL_FORMAT_RGB24,
#endif
media::PIXEL_FORMAT_RGB32,
- media::PIXEL_FORMAT_ARGB
+ media::PIXEL_FORMAT_ARGB,
+ media::PIXEL_FORMAT_Y16,
};
for (media::VideoPixelFormat format : kSupportedFormats) {

Powered by Google App Engine