ipa: ipu3: Do not set controls during configure

The configure operation is synchronous and should not send events back
to the pipeline handler.

If information needs to be returned from configure it should be handled
through the interface directly.

Move the initial call to setControls() out of configure() and into the
start() method which is called after the IPA running_ state is updated.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Kieran Bingham
2021-03-24 09:37:20 +00:00
parent 6bf86aa260
commit 500e99174a
+8 -3
View File
@@ -32,7 +32,7 @@ public:
{
return 0;
}
int start() override { return 0; }
int start() override;
void stop() override {}
void configure(const std::map<uint32_t, ControlInfoMap> &entityControls,
@@ -63,6 +63,13 @@ private:
uint32_t maxGain_;
};
int IPAIPU3::start()
{
setControls(0);
return 0;
}
void IPAIPU3::configure(const std::map<uint32_t, ControlInfoMap> &entityControls,
[[maybe_unused]] const Size &bdsOutputSize)
{
@@ -90,8 +97,6 @@ void IPAIPU3::configure(const std::map<uint32_t, ControlInfoMap> &entityControls
minGain_ = std::max(itGain->second.min().get<int32_t>(), 1);
maxGain_ = itGain->second.max().get<int32_t>();
gain_ = maxGain_;
setControls(0);
}
void IPAIPU3::mapBuffers(const std::vector<IPABuffer> &buffers)