camera_can_feature()
Determine whether a feature is available on the camera in its current state.
Synopsis:
#include <camera/camera_api.h>
bool camera_can_feature(camera_handle_t handle, camera_feature_t feature)
Arguments:
- handle
-
The handle returned by a call to the camera_open() function.
- feature
-
The specific feature to query.
Library:
libcamapiDescription:
The difference between this function and the camera_has_feature() function is that this function indicates the features on the camera are available for use in the current camera state rather than just available.
Returns:
true when the specified feature is currently available, otherwise, a value of false.