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

Unified Diff: media/capture/video/win/sink_filter_win.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: media/capture/video/win/sink_filter_win.cc
diff --git a/media/capture/video/win/sink_filter_win.cc b/media/capture/video/win/sink_filter_win.cc
index 58fd202482ef5ba46746003ee8bd15c42e5b2a11..0fb9184a68f38d5b705d8d62863618eacdd4d589 100644
--- a/media/capture/video/win/sink_filter_win.cc
+++ b/media/capture/video/win/sink_filter_win.cc
@@ -26,6 +26,19 @@ GUID kMediaSubTypeHDYC = {0x43594448,
0x0010,
{0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
+GUID kMediaSubTypeZ16 = {0x2036315a,
+ 0x0000,
+ 0x0010,
+ {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
+GUID kMediaSubTypeINVZ = {0x5a564e49,
+ 0x2d90,
+ 0x4a58,
+ {0x92, 0x0b, 0x77, 0x3f, 0x1f, 0x2c, 0x55, 0x6b}};
+GUID kMediaSubTypeY16 = {0x20363159,
+ 0x0000,
+ 0x0010,
+ {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
+
SinkFilterObserver::~SinkFilterObserver() {
}

Powered by Google App Engine
This is Rietveld 408576698