camera_get_supported_vf_frame_types()

Retrieve the viewfinder frame types available on the camera

Synopsis:

#include <camera/camera_api.h>
camera_error_t camera_get_supported_vf_frame_types(camera_handle_t handle,
                                                   uint32_t numasked,
                                                   uint32_t *numsupported,
                                                   camera_frametype_t *frametypes)

Arguments:

handle
The handle returned by a call to the camera_open() function.
numasked
The requested number of viewfinder frame types to return in the frametypes array. You can use a value of 0 to determine the number of viewfinder frame types supported by the camera.
numsupported
The returned number of viewfinder frame types supported by the specified camera.
frametypes
A pointer to a camera_frametype_t array. The array is updated with the viewfinder frame types supported by the camera. Ensure that you allocate an array with the same number of elements as specified in the numasked argument.

Library:

libcamapi

Description:

Use this function to retrieve the viewfinder frame types supported by the current camera. The returned formats can be applied to CAMERA_IMGPROP_FORMAT using the camera_set_vf_property() function.

Ensure that the frametypes argument points to an array which has at least numasked elements allocated. To determine an appropriate size for this array, you can invoke this function in presizing mode by setting the numasked argument to 0 or the types argument to NULL. When the function is invoked in this presizing mode, the maximum array size required is returned in the numsupported argument. You can then allocate an array of the appropriate size and invoke the function again with the numasked argument set to the value returned previously in the numsupported argument.

Returns:

CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.