libcamera: camera: Add CameraConfiguration

To properly support both multiple streams and stream usages the library
must provide a method to map the stream usages to the returned streams
configurations. Add a camera configuration object to handle this
mapping.

Applications can iterate over the returned camera configuration to
retrieve the streams selected by the library in the same order as the
usages it provided to the library.

Applications can use the operator[] to retrieve the stream pointer and
the stream configuration. Using a numerical index retrieves the stream
pointer, the numerical indexes corresponds to the insertion order of
usages in the CameraConfiguration, using the stream pointer retrieves
the stream's configuration.

Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Niklas Söderlund
2019-04-05 01:23:23 +02:00
parent 20a6455e0b
commit 9a7dc3ce7f
2 changed files with 220 additions and 0 deletions
+29
View File
@@ -24,6 +24,35 @@ class Stream;
class StreamConfiguration;
class StreamUsage;
class CameraConfiguration
{
public:
using iterator = std::vector<Stream *>::iterator;
using const_iterator = std::vector<Stream *>::const_iterator;
CameraConfiguration();
iterator begin();
iterator end();
const_iterator begin() const;
const_iterator end() const;
bool isValid() const;
bool isEmpty() const;
std::size_t size() const;
Stream *front();
const Stream *front() const;
Stream *operator[](unsigned int index) const;
StreamConfiguration &operator[](Stream *stream);
const StreamConfiguration &operator[](Stream *stream) const;
private:
std::vector<Stream *> order_;
std::map<Stream *, StreamConfiguration> config_;
};
class Camera final
{
public: