summaryrefslogtreecommitdiff
path: root/src/libcamera/pipeline/ipu3
diff options
context:
space:
mode:
authorJean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>2021-11-05 21:24:15 +0100
committerJean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>2021-11-15 11:00:05 +0100
commit268882fa309c62cae8cccf1f2209bc32fc24fb05 (patch)
tree92651388d92f80bd08179fc4d32dd0469167f694 /src/libcamera/pipeline/ipu3
parentca9adf6b920b6ac1476d7faad89f2c905b274640 (diff)
ipa: ipu3: Move ExposureTime to IPA
Now that we have the exposure time calculated, report it in the controls::ExposureTime and don't use the pipeline handler for it anymore. Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'src/libcamera/pipeline/ipu3')
-rw-r--r--src/libcamera/pipeline/ipu3/ipu3.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp
index 63916caf..c65afdb2 100644
--- a/src/libcamera/pipeline/ipu3/ipu3.cpp
+++ b/src/libcamera/pipeline/ipu3/ipu3.cpp
@@ -47,7 +47,7 @@ class IPU3CameraData : public Camera::Private
{
public:
IPU3CameraData(PipelineHandler *pipe)
- : Camera::Private(pipe), exposureTime_(0), supportsFlips_(false)
+ : Camera::Private(pipe), supportsFlips_(false)
{
}
@@ -67,7 +67,6 @@ public:
Stream vfStream_;
Stream rawStream_;
- uint32_t exposureTime_;
Rectangle cropRegion_;
bool supportsFlips_;
Transform rotationTransform_;
@@ -1045,17 +1044,6 @@ int PipelineHandlerIPU3::updateControls(IPU3CameraData *data)
controls[&controls::ScalerCrop] = ControlInfo(minCrop, maxCrop, maxCrop);
- /*
- * \todo Report the actual exposure time, use the default for the
- * moment.
- */
- const auto exposureInfo = data->ipaControls_.find(&controls::ExposureTime);
- if (exposureInfo == data->ipaControls_.end()) {
- LOG(IPU3, Error) << "Exposure control not initialized by the IPA";
- return -EINVAL;
- }
- data->exposureTime_ = exposureInfo->second.def().get<int32_t>();
-
/* Add the IPA registered controls to list of camera controls. */
for (const auto &ipaControl : data->ipaControls_)
controls[ipaControl.first] = ipaControl.second;
@@ -1317,8 +1305,6 @@ void IPU3CameraData::imguOutputBufferReady(FrameBuffer *buffer)
pipe()->completeBuffer(request, buffer);
request->metadata().set(controls::draft::PipelineDepth, 3);
- /* \todo Move the ExposureTime control to the IPA. */
- request->metadata().set(controls::ExposureTime, exposureTime_);
/* \todo Actually apply the scaler crop region to the ImgU. */
if (request->controls().contains(controls::ScalerCrop))
cropRegion_ = request->controls().get(controls::ScalerCrop);