From cef3e15324f3dbf35b1434cb901b91e2a8fc980b Mon Sep 17 00:00:00 2001 From: Umang Jain Date: Fri, 8 Apr 2022 16:19:17 +0530 Subject: ipa: vimc: Synchronise parameter buffer ops naming Synchronise the names of the operations with respect to parameters buffer with the names used in other IPA interfaces. Signed-off-by: Umang Jain Reviewed-by: Kieran Bingham Reviewed-by: Paul Elder --- src/ipa/vimc/vimc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ipa') diff --git a/src/ipa/vimc/vimc.cpp b/src/ipa/vimc/vimc.cpp index a62e72b0..85afb279 100644 --- a/src/ipa/vimc/vimc.cpp +++ b/src/ipa/vimc/vimc.cpp @@ -44,7 +44,7 @@ public: void unmapBuffers(const std::vector &ids) override; void queueRequest(uint32_t frame, const ControlList &controls) override; - void fillParams(uint32_t frame, uint32_t bufferId) override; + void fillParamsBuffer(uint32_t frame, uint32_t bufferId) override; private: void initTrace(); @@ -134,7 +134,7 @@ void IPAVimc::queueRequest([[maybe_unused]] uint32_t frame, { } -void IPAVimc::fillParams([[maybe_unused]] uint32_t frame, uint32_t bufferId) +void IPAVimc::fillParamsBuffer([[maybe_unused]] uint32_t frame, uint32_t bufferId) { auto it = buffers_.find(bufferId); if (it == buffers_.end()) { @@ -142,7 +142,7 @@ void IPAVimc::fillParams([[maybe_unused]] uint32_t frame, uint32_t bufferId) return; } - paramsFilled.emit(bufferId); + paramsBufferReady.emit(bufferId); } void IPAVimc::initTrace() -- cgit v1.2.1