Retrieve the supported manual white balance red/blue gains values
#include <camera/camera_3a.h>
camera_error_t camera_get_supported_manual_white_balance_rb_gain(camera_handle_t handle,
unsigned numasked,
unsigned *numsupported,
unsigned *gainvalues,
bool *maxmin)
Use this function to retrieve the set of supported manual white balance red/blue gain values for the camera.
Ensure that the whitebalancevalues 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 whitebalancevalues 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_white_balance_rb_gain().
CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.