Retrieve the supported viewfinder frame rates for the specified frame type and resolution
#include <camera/camera_api.h>
camera_error_t camera_get_specified_vf_framerates(camera_handle_t handle,
camera_frametype_t frametype,
camera_res_t resolution,
uint32_t numasked,
uint32_t *numsupported,
double *rates,
bool *maxmin)
Use this function to retrieve the supported viewfinder frame rates for the specified resolution and frame type. You can use the values returned by this function to configure the viewfinder frame rate using camera_set_vf_property().
Ensure that the rates 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 to zero or the rates argument to NULL. When the function is invoked in presizing mode, the maximum array size that's 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.
CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.