ipa: vimc: Rename processControls() to queueRequest()

Synchronise with other IPA interfaces (for e.g. IPU3, RkISP1)
that uses queueRequest() to pass in the request controls to
IPA.

Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Umang Jain 2022-03-31 22:23:19 +05:30
parent 08d7e66df0
commit 28a44e80f0
3 changed files with 5 additions and 5 deletions

View file

@ -44,7 +44,7 @@ public:
void unmapBuffers(const std::vector<unsigned int> &ids) override;
void fillParams(uint32_t frame, uint32_t bufferId) override;
void processControls(uint32_t frame, const ControlList &controls) override;
void queueRequest(uint32_t frame, const ControlList &controls) override;
private:
void initTrace();
@ -140,8 +140,8 @@ void IPAVimc::fillParams([[maybe_unused]] uint32_t frame, uint32_t bufferId)
paramsFilled.emit(bufferId);
}
void IPAVimc::processControls([[maybe_unused]] uint32_t frame,
[[maybe_unused]] const ControlList &controls)
void IPAVimc::queueRequest([[maybe_unused]] uint32_t frame,
[[maybe_unused]] const ControlList &controls)
{
}