ipa: Add start() and stop() operations
Add two new operations to the IPA interface to start and stop it. The intention is that these functions shall be used by the IPA to perform actions when the camera is started and stopped. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
72278369b3
commit
0e577cee9d
12 changed files with 156 additions and 3 deletions
|
@ -33,6 +33,8 @@ class IPARkISP1 : public IPAInterface
|
|||
{
|
||||
public:
|
||||
int init() override { return 0; }
|
||||
int start() override { return 0; }
|
||||
void stop() override {}
|
||||
|
||||
void configure(const std::map<unsigned int, IPAStream> &streamConfig,
|
||||
const std::map<unsigned int, const ControlInfoMap &> &entityControls) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue