[libcamera-devel] ipa: raspberrypi: Fix exposure and gain delays for imx477
diff mbox series

Message ID 20210216085505.1018624-1-naush@raspberrypi.com
State Accepted
Headers show
Series
  • [libcamera-devel] ipa: raspberrypi: Fix exposure and gain delays for imx477
Related show

Commit Message

Naushir Patuck Feb. 16, 2021, 8:55 a.m. UTC
The exposure and gain delays for imx477 are both 2 frames. This error
was not noticeable because the controller was using the embedded
metadata to get the exposure and gain values for the frame.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
---
 src/ipa/raspberrypi/cam_helper_imx477.cpp | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

David Plowman Feb. 16, 2021, 10:48 a.m. UTC | #1
Hi Naush

Thanks for correcting this!

Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
Tested-by: David Plowman <david.plowman@raspberrypi.com>

Best regards
David

On Tue, 16 Feb 2021 at 08:55, Naushir Patuck <naush@raspberrypi.com> wrote:
>
> The exposure and gain delays for imx477 are both 2 frames. This error
> was not noticeable because the controller was using the embedded
> metadata to get the exposure and gain values for the frame.
>
> Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
> ---
>  src/ipa/raspberrypi/cam_helper_imx477.cpp | 7 +++++++
>  1 file changed, 7 insertions(+)
>
> diff --git a/src/ipa/raspberrypi/cam_helper_imx477.cpp b/src/ipa/raspberrypi/cam_helper_imx477.cpp
> index 9a53c5dba9f8..e26c91f7d86d 100644
> --- a/src/ipa/raspberrypi/cam_helper_imx477.cpp
> +++ b/src/ipa/raspberrypi/cam_helper_imx477.cpp
> @@ -37,6 +37,7 @@ public:
>         CamHelperImx477();
>         uint32_t GainCode(double gain) const override;
>         double Gain(uint32_t gain_code) const override;
> +       void GetDelays(int &exposure_delay, int &gain_delay) const override;
>         bool SensorEmbeddedDataPresent() const override;
>
>  private:
> @@ -62,6 +63,12 @@ double CamHelperImx477::Gain(uint32_t gain_code) const
>         return 1024.0 / (1024 - gain_code);
>  }
>
> +void CamHelperImx477::GetDelays(int &exposure_delay, int &gain_delay) const
> +{
> +       exposure_delay = 2;
> +       gain_delay = 2;
> +}
> +
>  bool CamHelperImx477::SensorEmbeddedDataPresent() const
>  {
>         return true;
> --
> 2.25.1
>
> _______________________________________________
> libcamera-devel mailing list
> libcamera-devel@lists.libcamera.org
> https://lists.libcamera.org/listinfo/libcamera-devel
Laurent Pinchart Feb. 16, 2021, 11:37 p.m. UTC | #2
Hi Naush,

Thank you for the patch.

On Tue, Feb 16, 2021 at 08:55:05AM +0000, Naushir Patuck wrote:
> The exposure and gain delays for imx477 are both 2 frames. This error
> was not noticeable because the controller was using the embedded
> metadata to get the exposure and gain values for the frame.
> 
> Signed-off-by: Naushir Patuck <naush@raspberrypi.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

And pushed.

> ---
>  src/ipa/raspberrypi/cam_helper_imx477.cpp | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/src/ipa/raspberrypi/cam_helper_imx477.cpp b/src/ipa/raspberrypi/cam_helper_imx477.cpp
> index 9a53c5dba9f8..e26c91f7d86d 100644
> --- a/src/ipa/raspberrypi/cam_helper_imx477.cpp
> +++ b/src/ipa/raspberrypi/cam_helper_imx477.cpp
> @@ -37,6 +37,7 @@ public:
>  	CamHelperImx477();
>  	uint32_t GainCode(double gain) const override;
>  	double Gain(uint32_t gain_code) const override;
> +	void GetDelays(int &exposure_delay, int &gain_delay) const override;
>  	bool SensorEmbeddedDataPresent() const override;
>  
>  private:
> @@ -62,6 +63,12 @@ double CamHelperImx477::Gain(uint32_t gain_code) const
>  	return 1024.0 / (1024 - gain_code);
>  }
>  
> +void CamHelperImx477::GetDelays(int &exposure_delay, int &gain_delay) const
> +{
> +	exposure_delay = 2;
> +	gain_delay = 2;
> +}
> +
>  bool CamHelperImx477::SensorEmbeddedDataPresent() const
>  {
>  	return true;

Patch
diff mbox series

diff --git a/src/ipa/raspberrypi/cam_helper_imx477.cpp b/src/ipa/raspberrypi/cam_helper_imx477.cpp
index 9a53c5dba9f8..e26c91f7d86d 100644
--- a/src/ipa/raspberrypi/cam_helper_imx477.cpp
+++ b/src/ipa/raspberrypi/cam_helper_imx477.cpp
@@ -37,6 +37,7 @@  public:
 	CamHelperImx477();
 	uint32_t GainCode(double gain) const override;
 	double Gain(uint32_t gain_code) const override;
+	void GetDelays(int &exposure_delay, int &gain_delay) const override;
 	bool SensorEmbeddedDataPresent() const override;
 
 private:
@@ -62,6 +63,12 @@  double CamHelperImx477::Gain(uint32_t gain_code) const
 	return 1024.0 / (1024 - gain_code);
 }
 
+void CamHelperImx477::GetDelays(int &exposure_delay, int &gain_delay) const
+{
+	exposure_delay = 2;
+	gain_delay = 2;
+}
+
 bool CamHelperImx477::SensorEmbeddedDataPresent() const
 {
 	return true;