libcamera: device_enumerator: add DeviceMatch class

Provide a DeviceMatch class which represents all properties of a media
device a pipeline hander can specify when searching for a device to use
in its pipeline.

Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Niklas Söderlund
2018-12-21 15:54:23 +01:00
parent 0eab433d05
commit c0d39bab5b
2 changed files with 50 additions and 0 deletions
+14
View File
@@ -39,6 +39,20 @@ private:
std::map<std::string, std::string> entities_;
};
class DeviceMatch
{
public:
DeviceMatch(const std::string &driver);
void add(const std::string &entity);
bool match(const DeviceInfo *info) const;
private:
std::string driver_;
std::vector<std::string> entities_;
};
} /* namespace libcamera */
#endif /* __LIBCAMERA_DEVICE_ENUMERATOR_H__ */