Pepper_47_C_interfaces
pp_video_capture_dev.h
Go to the documentation of this file.
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.
4  */
5 
6 /* From dev/pp_video_capture_dev.idl modified Tue Nov 15 08:21:15 2016. */
7 
8 #ifndef PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
9 #define PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_
10 
11 #include "ppapi/c/pp_macros.h"
12 #include "ppapi/c/pp_stdint.h"
13 
14 /**
15  * @file
16  * Structs for dealing with video capture.
17  */
18 
19 
20 /**
21  * @addtogroup Structs
22  * @{
23  */
24 /**
25  * PP_VideoCaptureDeviceInfo_Dev is a structure that represents a video capture
26  * configuration, such as resolution and frame rate.
27  */
29  /**
30  * Required frame width.
31  */
32  uint32_t width;
33  /**
34  * Required frame height.
35  */
36  uint32_t height;
37  /**
38  * Required frames per second.
39  */
41 };
43 /**
44  * @}
45  */
46 
47 /**
48  * @addtogroup Enums
49  * @{
50  */
51 /**
52  * PP_VideoCaptureStatus_Dev is an enumeration that defines the various possible
53  * states of a VideoCapture.
54  */
55 typedef enum {
56  /**
57  * Initial state, capture is stopped.
58  */
60  /**
61  * StartCapture has been called, but capture hasn't started yet.
62  */
64  /**
65  * Capture has been started.
66  */
68  /**
69  * Capture has been started, but is paused because no buffer is available.
70  */
72  /**
73  * StopCapture has been called, but capture hasn't stopped yet.
74  */
78 /**
79  * @}
80  */
81 
82 #endif /* PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_ */
83 
PP_VideoCaptureStatus_Dev
PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_VideoCaptureDeviceInfo_Dev, 12)
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoCaptureStatus_Dev, 4)