camera_get_supported_manual_iso_values()

Retrieve the supported manual ISO values

Synopsis:

#include <camera/camera_3a.h>
camera_error_t camera_get_supported_manual_iso_values(camera_handle_t handle,
                                                      unsigned numasked,
                                                      unsigned *numsupported,
                                                      unsigned *isovalues,
                                                      bool *maxmin)

Arguments:

handle
The handle returned by a call to the camera_open() function.
numasked
The requested number of manual ISO values to return in the isovalues array. You can specify a value of 0 to determine the number of supported manual ISO values.
numsupported
A pointer to an integer that will be updated with the number of supported manual ISO values.
isovalues
A pointer to an unsigned @ int array that will be updated with the manual ISO values that are supported. Ensure that you allocate the array with at least numasked elements. If the maxmin argument returns true, then the first value returned in the isovalues array is the maximum supported manual ISO value, and the second value that is returned is the minimum supported manual ISO value.
maxmin
A pointer to a bool value that specifies how to interpret the isovalues argument. This argument is set to true if the values are to be interpreted as a maximum and minimum value; otherwise, it's set to false to indicate that the values describe only the discrete manual ISO values that are supported.

Library:

libcamapi

Description:

Use this function to retrieve the set of supported manual ISO values for the camera.

Ensure that the isovalues 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 isovalues 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.

The values that you retrieve using this function can be set using the camera_set_manual_iso() function.

Returns:

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