Index: media/video/capture/video_capture_device.h |
diff --git a/media/video/capture/video_capture_device.h b/media/video/capture/video_capture_device.h |
index 8ef43e75f0ebf8267b5f416ffebf0f4be1efd877..bcb88b57353c68524e3775bef3b0d514b76e6cce 100644 |
--- a/media/video/capture/video_capture_device.h |
+++ b/media/video/capture/video_capture_device.h |
@@ -221,6 +221,12 @@ class MEDIA_EXPORT VideoCaptureDevice { |
// Get the name of the capture device. |
virtual const Name& device_name() = 0; |
+ |
+ // Gets the supported video capture formats, if operation is supported by the |
+ // driver, for a particular video capture device identified by device_name. |
scherkus (not reviewing)
2013/09/11 17:30:46
does this method need to be part of this interface
|
+ virtual void GetDeviceSupportedFormats( |
+ const std::string& device_name, |
+ VideoCaptureFormats* capture_formats) = 0; |
}; |
} // namespace media |