libcamera: camera: extend camera object to support configuration of streams

Extend the camera to support reading and configuring formats for
groups of streams. The implementation in the Camera are minimalistic as
the heavy lifting are done by the pipeline handler implementations.

The most important functionality the camera provides in this context is
validation of data structures passed to it from the application and
access control to the pipeline handler.

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-01-31 10:52:41 +01:00
parent 0d913813b5
commit 65ea2422d2
2 changed files with 70 additions and 2 deletions

View file

@ -7,6 +7,7 @@
#ifndef __LIBCAMERA_CAMERA_H__
#define __LIBCAMERA_CAMERA_H__
#include <map>
#include <memory>
#include <string>
@ -16,6 +17,7 @@ namespace libcamera {
class PipelineHandler;
class Stream;
class StreamConfiguration;
class Camera final
{
@ -35,6 +37,9 @@ public:
void release();
const std::vector<Stream *> &streams() const;
std::map<Stream *, StreamConfiguration>
streamConfiguration(std::vector<Stream *> &streams);
int configureStreams(std::map<Stream *, StreamConfiguration> &config);
private:
Camera(PipelineHandler *pipe, const std::string &name);
@ -48,6 +53,7 @@ private:
std::vector<Stream *> streams_;
bool acquired_;
bool disconnected_;
};
} /* namespace libcamera */