get_supported_shutter_speeds_func_t

Updated: April 19, 2023

Retrieve the range of supported shutter speeds

Synopsis:

#include <camera/external_camera_api.h>
typedef int(* get_supported_shutter_speeds_func_t)(void *handle,
            double *minValue,
            double *maxValue);

Arguments:

handle
The handle that's returned from calling the function open_external_camera_func_t.
minValue
The returned minimum supported shutter speed value (in seconds).
maxValue
The returned maximum supported shutter speed value (in seconds).

Library:

libcamapi

Description:

This function retrieves the range of supported shutter speeds for the specified camera.

Note:

This function is optional. If it is not present, retrieving the supported shutter speeds will not be supported for this camera.

Returns:

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