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

Unified Diff: media/base/video_capture_types.h

Issue 921683004: Revert: Issue 545053002: Add still image capture interface for VideoCaptureDevice. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased (media/video/capture/video_capture_types.* went to media/base) Created 5 years, 10 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
« no previous file with comments | « no previous file | media/base/video_capture_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_capture_types.h
diff --git a/media/base/video_capture_types.h b/media/base/video_capture_types.h
index 717cbf644c7ae00a043d45a38e5384f94250187a..8ca8ed6bc809f4d7834a67925fd7500ff588d230 100644
--- a/media/base/video_capture_types.h
+++ b/media/base/video_capture_types.h
@@ -80,25 +80,8 @@ class MEDIA_EXPORT VideoCaptureFormat {
VideoPixelFormat pixel_format;
};
-// Image capture format specification.
-// This class is used by the video capture device to specify the format of a
-// still image captured and returned to a client. A list of these is also
-// provided when client queries supported formats for still image capture.
-class MEDIA_EXPORT ImageCaptureFormat {
- public:
- ImageCaptureFormat();
-
- ImageCaptureFormat(const gfx::Size& frame_size,
- VideoPixelFormat pixel_format);
-
- gfx::Size frame_size;
- VideoPixelFormat pixel_format;
-};
-
typedef std::vector<VideoCaptureFormat> VideoCaptureFormats;
-typedef std::vector<ImageCaptureFormat> ImageCaptureFormats;
-
// Parameters for starting video capture.
// This class is used by the client of a video capture device to specify the
// format of frames in which the client would like to have captured frames
« no previous file with comments | « no previous file | media/base/video_capture_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698