diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-10-26 23:02:22 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-11-20 21:47:58 +0200 |
commit | 5f90d52d6e36c7d1c77717d026d0e7413d597d5e (patch) | |
tree | e0b29515fdb6497bf8a84a0e21316e03fdd360b6 /src/ipa/ipa_vimc.cpp | |
parent | c0b437fd6cf7ca2e91eb749a25539f217722c66e (diff) |
ipa: Pass ControlInfoMap references to IPAInterface::configure()
The IPAInterface::configure() operation receives a map of ControlInfoMap
instances. Pass const references instead to avoid copies when not
required (the callee can still make manual copies), and to allow for the
future serialization layer to keep references to the original object.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/ipa/ipa_vimc.cpp')
-rw-r--r-- | src/ipa/ipa_vimc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipa/ipa_vimc.cpp b/src/ipa/ipa_vimc.cpp index 9fd5212b..50ca8dd8 100644 --- a/src/ipa/ipa_vimc.cpp +++ b/src/ipa/ipa_vimc.cpp @@ -31,7 +31,7 @@ public: int init() override; void configure(const std::map<unsigned int, IPAStream> &streamConfig, - const std::map<unsigned int, ControlInfoMap> &entityControls) override {} + const std::map<unsigned int, const ControlInfoMap &> &entityControls) override {} void mapBuffers(const std::vector<IPABuffer> &buffers) override {} void unmapBuffers(const std::vector<unsigned int> &ids) override {} void processEvent(const IPAOperationData &event) override {} |