summaryrefslogtreecommitdiff
path: root/Documentation/index.rst
diff options
context:
space:
mode:
authorDavid Plowman <david.plowman@raspberrypi.com>2020-11-20 11:16:17 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2020-11-20 11:31:47 +0000
commit589d4e6c20de24cc59cfcdb816ddc8a694fb268a (patch)
treedc2fd91e4827312225498fb588c45df0cd2cdd63 /Documentation/index.rst
parentde5d03673c41f5f117d03c23495de5620fd6f42e (diff)
src: ipa: raspberrypi: Add missing 'cloudy' AWB mode
Support the 'cloudy' AWB mode which was left out when the AwbModeTable was introduced. Signed-off-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'Documentation/index.rst')
0 files changed, 0 insertions, 0 deletions
zeRange>> formats_; }; struct StreamConfiguration { StreamConfiguration(); StreamConfiguration(const StreamFormats &formats); PixelFormat pixelFormat; Size size; unsigned int stride; unsigned int frameSize; unsigned int bufferCount; Stream *stream() const { return stream_; } void setStream(Stream *stream) { stream_ = stream; } const StreamFormats &formats() const { return formats_; } std::string toString() const; private: Stream *stream_; StreamFormats formats_; }; enum StreamRole { Raw, StillCapture, VideoRecording, Viewfinder, }; using StreamRoles = std::vector<StreamRole>; class Stream { public: Stream(); const StreamConfiguration &configuration() const { return configuration_; } protected: friend class Camera; StreamConfiguration configuration_; }; } /* namespace libcamera */ #endif /* __LIBCAMERA_STREAM_H__ */