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-12-08 14:56:21 +0000
commit437ef9a53caf0a62fe58f661504c5e3c364ca27c (patch)
tree3aff8ca9b46b1aed6bc3fbcebb8ed2bcd9776ba0
parente408c430b96ef72b25eeb9d9c47b86fca896506b (diff)
libcamera: pipeline: vivid: Set request timestampvivid-post-f16acb275c85
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);
}