camera_get_video_output_resolutions()

Updated: April 19, 2023

Retrieve the supported output resolutions for video

Synopsis:

#include <camera/camera_api.h>
camera_error_t camera_get_video_output_resolutions(camera_handle_t handle,
                                                   unsigned int numasked,
                                                   unsigned int *numsupported,
                                                   camera_res_t *resolutions)

Arguments:

handle
The handle returned by a call to the camera_open() function.
numasked
The requested number of video resolutions to return in the resolutions array.
numsupported
The returned number of video resolutions supported by the specified camera.
resolutions
A pointer to a camera_res_t array. The array is updated with the video resolutions supported by the camera.

Library:

libcamapi

Description:

After you use this function to retrieve the video resolutions that are supported by the camera, you can configure the video size using camera_set_video_property().

Ensure that the resolutions argument points to an array that 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 resolutions argument to NULL. The function then returns, in the numsupported argument, the maximum array size required. You can then allocate an array of this size, store its address in resolutions, and invoke the function again with numasked set to that previous numsupported value.

Returns:

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