camera_get_supported_manual_shutter_speeds()
Retrieve the supported manual shutter speeds
Synopsis:
#include <camera/camera_3a.h>camera_error_t camera_get_supported_manual_shutter_speeds(camera_handle_t handle,
unsigned numasked,
unsigned *numsupported,
double *shutterspeeds,
bool *maxmin)Arguments:
- handle
- The handle returned by a call to the camera_open() function.
- numasked
- The requested number of manaul shutter speeds to return in the shutterspeeds array. You can specify a value of 0 to determine the number of supported manual shutter speeds.
- numsupported
- A pointer to an integer that will be updated with the number of supported shutter speeds.
- shutterspeeds
- A pointer to a
doublearray that will be updated with the supported manual shutter speeds (in seconds). Ensure that you allocate an array at least numasked elements. For details about the meaning of the values returned in this array, see the maxmin description. - maxmin
- A pointer to a
boolthat will specify how to interpret the shutterspeeds array. This argument will betrueif the first of two values returned in the array is to be interpreted as the maximum supported shutter speed and the second as the minimum supported shutter speed. It will befalseif the values are to be interpreted as the discrete shutter speeds that are supported.
Library:
libcamapiDescription:
Use this function to retrieve the set of supported manual shutter speeds that you can use with the current camera.
Ensure that the shutterspeeds 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 shutterspeeds 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 and invoke the function again with numasked set to that previous numsupported value.
The values that you retrieve using this function can be set using the camera_set_manual_shutter_speed() function.
Returns:
CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.
