summaryrefslogtreecommitdiff
path: root/src/ipa/vimc
diff options
context:
space:
mode:
authorUmang Jain <umang.jain@ideasonboard.com>2022-04-08 16:19:17 +0530
committerUmang Jain <umang.jain@ideasonboard.com>2022-04-13 19:04:58 +0530
commitcef3e15324f3dbf35b1434cb901b91e2a8fc980b (patch)
tree85135c763e3f44af5d8da2bbc5d3013f3b9e7728 /src/ipa/vimc
parent52cd4dacd0ee89a3785f661592d515537180fe64 (diff)
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 <umang.jain@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'src/ipa/vimc')
-rw-r--r--src/ipa/vimc/vimc.cpp6
1 files changed, 3 insertions, 3 deletions
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<unsigned int> &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()