Retrieve postview buffers from the camera.
#include <camera/camera_api.h>
camera_error_t camera_get_postview_buffers(camera_handle_t handle,
camera_eventkey_t key,
camera_buffer_t *inbuffer,
camera_buffer_t *outbuffer)
BlackBerry 10.0.0
The handle returned by a call to the camera_open() function.
The key value that was returned by a call to the camera_enable_postview_event() function.
A pointer to the input camera_buffer_t struct returned by the camera.
A pointer to the output camera_buffer_t struct returned by the camera.
Use this function to retrieve buffers with postview data. Only call this function after receiving a postview event.
Postview events are enabled using camera_enable_postview_event(). Use the camera_return_buffer() when you are finished processing a buffer. For more information about event mode, see scope="peer">About event mode. For more information about when inbuffer and outbuffer are used, see camera_eventmode_t.
CAMERA_EOK when the function successfully completes, otherwise another camera_error_t value that provides the reason that the call failed.