camera_get_capture_property()

Get a property of an analog camera

Synopsis:

#include <camera/camera_api.h>
camera_error_t camera_get_capture_property(camera_handle_t handle,
                                           uint32_t prop,
                                           int32_t *value)

Arguments:

handle
The handle returned by a call to the camera_open() function.
prop
The property to retrieve. See the QNX Video Capture Library for valid values to use.
value
The read value of this property on success.

Library:

libcamapi

Description:

Use this function to get a property that is specific to analog cameras using the Video Capture Library. A camera needs to support the CAMERA_FEATURE_ANALOGCAMERA feature to use this function. This function is equivalent to calling the function capture_get_property_i() from the Video Capture Library. For more information, see the Video Capture Library API Reference.

Returns:

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