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;
