summaryrefslogtreecommitdiff
path: root/src/apps/common/stream_options.h
blob: a5f3bde08da8c93d2ad37b831bea688215fdec38 (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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2020, Raspberry Pi Ltd
 *
 * stream_options.h - 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);
};