Create a new helper class StreamKeyValueParser to parse command line options describing stream configurations. The goal is to share this new class between cam and qcam. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
33 lines
764 B
C++
33 lines
764 B
C++
/* 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 <libcamera/camera.h>
|
|
|
|
#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__ */
|