/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2020, Raspberry Pi (Trading) Ltd. * * stream_options.h - Helper to parse options for streams */ #ifndef __CAM_STREAM_OPTIONS_H__ #define __CAM_STREAM_OPTIONS_H__ #include #include "options.h" using namespace libcamera; class StreamKeyValueParser : public KeyValueParser { public: StreamKeyValueParser(); KeyValueParser::Options parse(const char *arguments) override; static StreamRoles roles(const OptionValue &values); static int updateConfiguration(CameraConfiguration *config, const OptionValue &values); private: static bool parseRole(StreamRole *role, const KeyValueParser::Options &options); }; #endif /* __CAM_STREAM_OPTIONS_H__ */ '> libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/include/android/meson.build
blob: da2504f2e493e192e88b2dae478b275a94bae00d (plain)
1
2
3
4
5
6
7