From a6de9030893753e5428ee912fe7c52fbf93febd1 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 27 Apr 2020 02:36:18 +0300 Subject: ipa: Pass IPA initialization settings to IPAInterface::init() Add a new IPASettings class to pass IPA initialization settings through the IPAInterface::init() method. The settings currently only contain the name of a configuration file, and are expected to be extended later. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- src/ipa/libipa/ipa_interface_wrapper.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/ipa/libipa/ipa_interface_wrapper.cpp') diff --git a/src/ipa/libipa/ipa_interface_wrapper.cpp b/src/ipa/libipa/ipa_interface_wrapper.cpp index f50f93a0..9596cb20 100644 --- a/src/ipa/libipa/ipa_interface_wrapper.cpp +++ b/src/ipa/libipa/ipa_interface_wrapper.cpp @@ -79,11 +79,15 @@ void *IPAInterfaceWrapper::get_interface(struct ipa_context *_ctx) return ctx->ipa_.get(); } -void IPAInterfaceWrapper::init(struct ipa_context *_ctx) +void IPAInterfaceWrapper::init(struct ipa_context *_ctx, + const struct ipa_settings *settings) { IPAInterfaceWrapper *ctx = static_cast(_ctx); - ctx->ipa_->init(); + IPASettings ipaSettings{ + .configurationFile = settings->configuration_file + }; + ctx->ipa_->init(ipaSettings); } int IPAInterfaceWrapper::start(struct ipa_context *_ctx) -- cgit v1.2.1