summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/histogram.cpp
AgeCommit message (Expand)Author
2020-09-29ipa: raspberrypi: Rename the controller namespace from Rpi to RpiControllerNaushir Patuck
2020-05-11libcamera: ipa: Raspberry Pi IPANaushir Patuck
an> * Copyright (C) 2020, Raspberry Pi Ltd * * Helper to parse options for streams */ #pragma once #include <optional> #include <libcamera/camera.h> #include "options.h" class StreamKeyValueParser : public KeyValueParser { public: StreamKeyValueParser(); KeyValueParser::Options parse(const char *arguments) override; static std::vector<libcamera::StreamRole> roles(const OptionValue &values); static int updateConfiguration(libcamera::CameraConfiguration *config, const OptionValue &values); private: static std::optional<libcamera::StreamRole> parseRole(const KeyValueParser::Options &options); };