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

Unified Diff: ppapi/c/dev/pp_video_capture_dev.h

Issue 7553003: Video Capture Pepper API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make Clang happy Created 9 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
« no previous file with comments | « content/renderer/pepper_plugin_delegate_impl.cc ('k') | ppapi/c/dev/ppb_video_capture_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/pp_video_capture_dev.h
diff --git a/ppapi/c/dev/pp_video_capture_dev.h b/ppapi/c/dev/pp_video_capture_dev.h
new file mode 100644
index 0000000000000000000000000000000000000000..6f35313bc3065a98863af85c68a1abd6cacfbd2d
--- /dev/null
+++ b/ppapi/c/dev/pp_video_capture_dev.h
@@ -0,0 +1,49 @@
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#ifndef PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
+#define PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
+
+#include "ppapi/c/pp_stdint.h"
+
+/**
+ * PP_VideoCaptureDeviceInfo_Dev is a structure that represent a video capture
+ * configuration, such as resolution and frame rate.
+ */
+struct PP_VideoCaptureDeviceInfo_Dev {
+ uint32_t width;
+ uint32_t height;
+ uint32_t frames_per_second;
+};
+PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_VideoCaptureDeviceInfo_Dev, 12);
+
+/**
+ * PP_VideoCaptureStatus_Dev is an enumeration that defines the various possible
+ * states of a VideoCapture.
+ */
+typedef enum {
+ /**
+ * Initial state, capture is stopped.
+ */
+ PP_VIDEO_CAPTURE_STATUS_STOPPED,
+ /**
+ * StartCapture has been called, but capture hasn't started yet.
+ */
+ PP_VIDEO_CAPTURE_STATUS_STARTING,
+ /**
+ * Capture is started.
+ */
+ PP_VIDEO_CAPTURE_STATUS_STARTED,
+ /**
+ * Capture has been started, but is paused because no buffer is available.
+ */
+ PP_VIDEO_CAPTURE_STATUS_PAUSED,
+ /**
+ * StopCapture has been called, but capture hasn't stopped yet.
+ */
+ PP_VIDEO_CAPTURE_STATUS_STOPPING
+} PP_VideoCaptureStatus_Dev;
+PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoCaptureStatus_Dev, 4);
+
+#endif /* PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_ */
« no previous file with comments | « content/renderer/pepper_plugin_delegate_impl.cc ('k') | ppapi/c/dev/ppb_video_capture_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698