libcamera: pipeline_handler: Register requests
Provide a call allowing requests to be registered and associated with the pipeline handler after being constructed by the camera. This provides an opportunity for the PipelineHandler to connect any signals it may be interested in receiving for the request such as getting notifications when the request is ready for processing when using a fence. While here, update the existing usage of the d pointer in Camera::createRequest() to match the style of other functions. Bug: https://github.com/raspberrypi/libcamera-apps/issues/217 Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
@@ -1074,12 +1074,19 @@ int Camera::configure(CameraConfiguration *config)
|
||||
*/
|
||||
std::unique_ptr<Request> Camera::createRequest(uint64_t cookie)
|
||||
{
|
||||
int ret = _d()->isAccessAllowed(Private::CameraConfigured,
|
||||
Private::CameraRunning);
|
||||
Private *const d = _d();
|
||||
|
||||
int ret = d->isAccessAllowed(Private::CameraConfigured,
|
||||
Private::CameraRunning);
|
||||
if (ret < 0)
|
||||
return nullptr;
|
||||
|
||||
return std::make_unique<Request>(this, cookie);
|
||||
std::unique_ptr<Request> request = std::make_unique<Request>(this, cookie);
|
||||
|
||||
/* Associate the request with the pipeline handler. */
|
||||
d->pipe_->registerRequest(request.get());
|
||||
|
||||
return request;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user