camera_remove_video_group_entry()

Updated: April 19, 2023

Disassociate a camera from a video group

Synopsis:

#include <camera/camera_api.h>
camera_error_t camera_remove_video_group_entry(camera_video_group_id_t group_id,
                                               camera_handle_t handle)

Arguments:

group_id
The ID of the video group (see camera_video_group_id_t).
handle
The handle of the camera to remove from the group (see camera_handle_t).

Library:

libcamapi

Description:

This function disassociates a camera from a video group, after the camera was added using camera_add_video_group_entry(). After the camera has been disassociated, it can record and encode video independently from the group.

Returns:

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