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

Unified Diff: media/video/capture/video_capture_device.cc

Issue 468833002: Mac QTKit Video Capture: Force BlackMagic cameras to be opened in HD (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tommi@s comments Created 6 years, 4 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: media/video/capture/video_capture_device.cc
diff --git a/media/video/capture/video_capture_device.cc b/media/video/capture/video_capture_device.cc
index 2d8420791fc868aa7d0bd99fe4c328e80cf798ae..3aa18269f013b22f7e008d7b00b85ee3cd5d74b6 100644
--- a/media/video/capture/video_capture_device.cc
+++ b/media/video/capture/video_capture_device.cc
@@ -38,7 +38,8 @@ VideoCaptureDevice::Name::Name(const std::string& name,
: device_name_(name),
unique_id_(id),
capture_api_class_(api_type),
- transport_type_(OTHER_TRANSPORT) {}
+ transport_type_(OTHER_TRANSPORT),
+ is_blacklisted_(false) {}
VideoCaptureDevice::Name::Name(const std::string& name,
const std::string& id,
@@ -47,7 +48,8 @@ VideoCaptureDevice::Name::Name(const std::string& name,
: device_name_(name),
unique_id_(id),
capture_api_class_(api_type),
- transport_type_(transport_type) {}
+ transport_type_(transport_type),
+ is_blacklisted_(false) {}
#endif
VideoCaptureDevice::Name::~Name() {}

Powered by Google App Engine
This is Rietveld 408576698