/* 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__ */ 3ed9ae9863da02e16e417d8307e'/> libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/ipa/meson.build
blob: 5a5de267c1477d249b82e12a389a5bc65bd6813a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39