1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
6 /* From dev/pp_video_capture_dev.idl modified Mon Nov 14 10:36:01 2011. */
8 #ifndef PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
9 #define PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
11 #include "ppapi/c/pp_macros.h"
12 #include "ppapi/c/pp_stdint.h"
16 * Structs for dealing with video capture.
25 * PP_VideoCaptureDeviceInfo_Dev is a structure that represent a video capture
26 * configuration, such as resolution and frame rate.
28 struct PP_VideoCaptureDeviceInfo_Dev
{
31 uint32_t frames_per_second
;
33 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_VideoCaptureDeviceInfo_Dev
, 12);
43 * PP_VideoCaptureStatus_Dev is an enumeration that defines the various possible
44 * states of a VideoCapture.
48 * Initial state, capture is stopped.
50 PP_VIDEO_CAPTURE_STATUS_STOPPED
= 0,
52 * StartCapture has been called, but capture hasn't started yet.
54 PP_VIDEO_CAPTURE_STATUS_STARTING
= 1,
56 * Capture has been started.
58 PP_VIDEO_CAPTURE_STATUS_STARTED
= 2,
60 * Capture has been started, but is paused because no buffer is available.
62 PP_VIDEO_CAPTURE_STATUS_PAUSED
= 3,
64 * StopCapture has been called, but capture hasn't stopped yet.
66 PP_VIDEO_CAPTURE_STATUS_STOPPING
= 4
67 } PP_VideoCaptureStatus_Dev
;
68 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoCaptureStatus_Dev
, 4);
73 #endif /* PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_ */