summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2021-05-12 15:03:27 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2021-09-09 14:01:17 +0100
commitd1d060765f920b9cd89b69831055e3bcb8ca4af0 (patch)
treefa9af1d193453e0ec41c3f09e470a3d9d1f9d58a
parent9445243a4e5371e7270f6598aab96eabf31f950d (diff)
libcamera: pipeline: vivid: Set request timestampvivid-post-395d43d6d7
Provide the request SensorTimestamp as the buffer completion time. This is fake, as there is no SensorTimestamp on the VIVID pipeline as it's a virtual video device, but it provides a suitable data point. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r--src/libcamera/pipeline/vivid/vivid.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcamera/pipeline/vivid/vivid.cpp b/src/libcamera/pipeline/vivid/vivid.cpp
index c3fb9360..4eade27d 100644
--- a/src/libcamera/pipeline/vivid/vivid.cpp
+++ b/src/libcamera/pipeline/vivid/vivid.cpp
@@ -396,6 +396,10 @@ void VividCameraData::bufferReady(FrameBuffer *buffer)
{
Request *request = buffer->request();
+ /* Record the sensor's timestamp in the request metadata. */
+ request->metadata().set(controls::SensorTimestamp,
+ buffer->metadata().timestamp);
+
pipe()->completeBuffer(request, buffer);
pipe()->completeRequest(request);
}