Message ID | 20211113084947.21892-14-jeanmichel.hautbois@ideasonboard.com |
---|---|
State | Accepted |
Headers | show |
Series |
|
Related | show |
Han-Lin, This patch removes the setting of the ExposureTime control from the Pipeline Handler, and makes it the responsibility of the IPA. A corresponding change will be required in the Intel IPA. Could you look into this please? I plan to merge this series today. It won't cause you a compile breakage, but I would guess that CTS will not get the information it expects after this. Regards Kieran Quoting Jean-Michel Hautbois (2021-11-13 08:49:46) > 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> > --- > src/ipa/ipu3/ipu3.cpp | 2 ++ > src/libcamera/pipeline/ipu3/ipu3.cpp | 16 +--------------- > 2 files changed, 3 insertions(+), 15 deletions(-) > > diff --git a/src/ipa/ipu3/ipu3.cpp b/src/ipa/ipu3/ipu3.cpp > index f1597f78..dc6f2ced 100644 > --- a/src/ipa/ipu3/ipu3.cpp > +++ b/src/ipa/ipu3/ipu3.cpp > @@ -630,6 +630,8 @@ void IPAIPU3::parseStatistics(unsigned int frame, > > ctrls.set(controls::ColourTemperature, context_.frameContext.awb.temperatureK); > > + ctrls.set(controls::ExposureTime, context_.frameContext.sensor.exposure * lineDuration_.get<std::micro>()); > + > /* > * \todo The Metadata provides a path to getting extended data > * out to the application. Further data such as a simplifed Histogram > diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp > index c984ed12..319bb1a3 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); > -- > 2.32.0 >
diff --git a/src/ipa/ipu3/ipu3.cpp b/src/ipa/ipu3/ipu3.cpp index f1597f78..dc6f2ced 100644 --- a/src/ipa/ipu3/ipu3.cpp +++ b/src/ipa/ipu3/ipu3.cpp @@ -630,6 +630,8 @@ void IPAIPU3::parseStatistics(unsigned int frame, ctrls.set(controls::ColourTemperature, context_.frameContext.awb.temperatureK); + ctrls.set(controls::ExposureTime, context_.frameContext.sensor.exposure * lineDuration_.get<std::micro>()); + /* * \todo The Metadata provides a path to getting extended data * out to the application. Further data such as a simplifed Histogram diff --git a/src/libcamera/pipeline/ipu3/ipu3.cpp b/src/libcamera/pipeline/ipu3/ipu3.cpp index c984ed12..319bb1a3 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);