OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 /* From dev/ppb_video_capture_dev.idl modified Wed Oct 5 09:11:07 2011. */ | 6 /* From dev/ppb_video_capture_dev.idl modified Tue Oct 11 10:01:39 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_DEV_PPB_VIDEO_CAPTURE_DEV_H_ | 8 #ifndef PPAPI_C_DEV_PPB_VIDEO_CAPTURE_DEV_H_ |
9 #define PPAPI_C_DEV_PPB_VIDEO_CAPTURE_DEV_H_ | 9 #define PPAPI_C_DEV_PPB_VIDEO_CAPTURE_DEV_H_ |
10 | 10 |
11 #include "ppapi/c/dev/pp_video_capture_dev.h" | 11 #include "ppapi/c/dev/pp_video_capture_dev.h" |
12 #include "ppapi/c/pp_bool.h" | 12 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
15 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
16 #include "ppapi/c/pp_stdint.h" | 16 #include "ppapi/c/pp_stdint.h" |
(...skipping 29 matching lines...) Expand all Loading... |
46 * 5- When the plugin is done with the buffer, call ReuseBuffer | 46 * 5- When the plugin is done with the buffer, call ReuseBuffer |
47 * 6- Stop the capture using StopCapture. | 47 * 6- Stop the capture using StopCapture. |
48 * | 48 * |
49 * The browser may change the resolution based on the constraints of the system, | 49 * The browser may change the resolution based on the constraints of the system, |
50 * in which case OnDeviceInfo will be called again, with new buffers. | 50 * in which case OnDeviceInfo will be called again, with new buffers. |
51 * | 51 * |
52 * The buffers contain the pixel data for a frame. The format is planar YUV | 52 * The buffers contain the pixel data for a frame. The format is planar YUV |
53 * 4:2:0, one byte per pixel, tightly packed (width x height Y values, then | 53 * 4:2:0, one byte per pixel, tightly packed (width x height Y values, then |
54 * width/2 x height/2 U values, then width/2 x height/2 V values). | 54 * width/2 x height/2 U values, then width/2 x height/2 V values). |
55 */ | 55 */ |
56 struct PPB_VideoCapture_Dev { | 56 struct PPB_VideoCapture_Dev_0_1 { |
57 /** | 57 /** |
58 * Creates a new VideoCapture. | 58 * Creates a new VideoCapture. |
59 */ | 59 */ |
60 PP_Resource (*Create)(PP_Instance instance); | 60 PP_Resource (*Create)(PP_Instance instance); |
61 /** | 61 /** |
62 * Returns PP_TRUE if the given resource is a VideoCapture. | 62 * Returns PP_TRUE if the given resource is a VideoCapture. |
63 */ | 63 */ |
64 PP_Bool (*IsVideoCapture)(PP_Resource video_capture); | 64 PP_Bool (*IsVideoCapture)(PP_Resource video_capture); |
65 /** | 65 /** |
66 * Starts the capture. |requested_info| is a pointer to a structure containing | 66 * Starts the capture. |requested_info| is a pointer to a structure containing |
(...skipping 23 matching lines...) Expand all Loading... |
90 */ | 90 */ |
91 int32_t (*ReuseBuffer)(PP_Resource video_capture, uint32_t buffer); | 91 int32_t (*ReuseBuffer)(PP_Resource video_capture, uint32_t buffer); |
92 /** | 92 /** |
93 * Stops the capture. | 93 * Stops the capture. |
94 * | 94 * |
95 * Returns PP_ERROR_FAILED if the capture wasn't already started, or PP_OK on | 95 * Returns PP_ERROR_FAILED if the capture wasn't already started, or PP_OK on |
96 * success. | 96 * success. |
97 */ | 97 */ |
98 int32_t (*StopCapture)(PP_Resource video_capture); | 98 int32_t (*StopCapture)(PP_Resource video_capture); |
99 }; | 99 }; |
| 100 |
| 101 typedef struct PPB_VideoCapture_Dev_0_1 PPB_VideoCapture_Dev; |
100 /** | 102 /** |
101 * @} | 103 * @} |
102 */ | 104 */ |
103 | 105 |
104 #endif /* PPAPI_C_DEV_PPB_VIDEO_CAPTURE_DEV_H_ */ | 106 #endif /* PPAPI_C_DEV_PPB_VIDEO_CAPTURE_DEV_H_ */ |
105 | 107 |
OLD | NEW |