Pepper_47_C_interfaces
ppb_camera_capabilities_private.h
Go to the documentation of this file.
1 /* Copyright 2014 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 private/ppb_camera_capabilities_private.idl,
7  * modified Thu Oct 20 13:57:04 2016.
8  */
9 
10 #ifndef PPAPI_C_PRIVATE_PPB_CAMERA_CAPABILITIES_PRIVATE_H_
11 #define PPAPI_C_PRIVATE_PPB_CAMERA_CAPABILITIES_PRIVATE_H_
12 
13 #include "ppapi/c/pp_bool.h"
14 #include "ppapi/c/pp_macros.h"
15 #include "ppapi/c/pp_resource.h"
16 #include "ppapi/c/pp_size.h"
17 #include "ppapi/c/pp_stdint.h"
19 
20 #define PPB_CAMERACAPABILITIES_PRIVATE_INTERFACE_0_1 \
21  "PPB_CameraCapabilities_Private;0.1"
22 #define PPB_CAMERACAPABILITIES_PRIVATE_INTERFACE \
23  PPB_CAMERACAPABILITIES_PRIVATE_INTERFACE_0_1
24 
25 /**
26  * @file
27  * This file defines the PPB_CameraCapabilities_Private interface for
28  * establishing an image capture configuration resource within the browser.
29  */
30 
31 
32 /**
33  * @addtogroup Interfaces
34  * @{
35  */
36 /**
37  * The <code>PPB_CameraCapabilities_Private</code> interface contains pointers
38  * to several functions for getting the image capture capabilities within the
39  * browser.
40  */
42  /**
43  * IsCameraCapabilities() determines if the given resource is a
44  * <code>PPB_CameraCapabilities_Private</code>.
45  *
46  * @param[in] resource A <code>PP_Resource</code> corresponding to an image
47  * capture capabilities resource.
48  *
49  * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the given
50  * resource is an <code>PP_CameraCapabilities_Private</code> resource,
51  * otherwise <code>PP_FALSE</code>.
52  */
54  /**
55  * GetSupportedVideoCaptureFormats() returns the supported video capture
56  * formats for the given <code>PPB_CameraCapabilities_Private</code>.
57  *
58  * @param[in] capabilities A <code>PP_Resource</code> corresponding to an
59  * image capture capabilities resource.
60  * @param[out] array_size The size of preview size array.
61  * @param[out] formats An array of <code>PP_VideoCaptureFormat</code>
62  * corresponding to the supported video capture formats. The ownership of the
63  * array belongs to <code>PPB_CameraCapabilities_Private</code> and the caller
64  * should not free it. When a PPB_CameraCapabilities_Private is deleted, the
65  * array returning from this is no longer valid.
66  */
68  PP_Resource capabilities,
69  uint32_t* array_size,
70  struct PP_VideoCaptureFormat** formats);
71 };
72 
75 /**
76  * @}
77  */
78 
79 #endif /* PPAPI_C_PRIVATE_PPB_CAMERA_CAPABILITIES_PRIVATE_H_ */
80 
void(* GetSupportedVideoCaptureFormats)(PP_Resource capabilities, uint32_t *array_size, struct PP_VideoCaptureFormat **formats)
int32_t PP_Resource
Definition: pp_resource.h:40
PP_Bool
Definition: pp_bool.h:30
PP_Bool(* IsCameraCapabilities)(PP_Resource resource)