ipa: vimc: Add configure() function
As part of an effort to make the vimc IPA usable for testing, extend it with a configure function. The configuration is currently ignored by the IPA. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
This commit is contained in:
committed by
Umang Jain
parent
25462474f8
commit
568c4049bc
@@ -34,6 +34,10 @@ public:
|
||||
int start() override;
|
||||
void stop() override;
|
||||
|
||||
int configure(const IPACameraSensorInfo &sensorInfo,
|
||||
const std::map<unsigned int, IPAStream> &streamConfig,
|
||||
const std::map<unsigned int, ControlInfoMap> &entityControls) override;
|
||||
|
||||
private:
|
||||
void initTrace();
|
||||
void trace(enum ipa::vimc::IPAOperationCode operation);
|
||||
@@ -86,6 +90,15 @@ void IPAVimc::stop()
|
||||
LOG(IPAVimc, Debug) << "stop vimc IPA!";
|
||||
}
|
||||
|
||||
int IPAVimc::configure([[maybe_unused]] const IPACameraSensorInfo &sensorInfo,
|
||||
[[maybe_unused]] const std::map<unsigned int, IPAStream> &streamConfig,
|
||||
[[maybe_unused]] const std::map<unsigned int, ControlInfoMap> &entityControls)
|
||||
{
|
||||
LOG(IPAVimc, Debug) << "configure()";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void IPAVimc::initTrace()
|
||||
{
|
||||
struct stat fifoStat;
|
||||
|
||||
Reference in New Issue
Block a user