Use the StreamKeyValueParser helper to parse stream configuration from the command line. This extends qcam to accept role hints and pixel format in addition to a size. Currently only one viewfinder stream is supported, add a check to keep this behavior. Going forward this restriction will be lifted to support more then one stream. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
80 lines
1.6 KiB
C++
80 lines
1.6 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* main.cpp - cam - The libcamera swiss army knife
|
|
*/
|
|
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
|
|
#include <QApplication>
|
|
#include <QtDebug>
|
|
|
|
#include <libcamera/camera_manager.h>
|
|
|
|
#include "../cam/options.h"
|
|
#include "../cam/stream_options.h"
|
|
#include "main_window.h"
|
|
|
|
void signalHandler(int signal)
|
|
{
|
|
qInfo() << "Exiting";
|
|
qApp->quit();
|
|
}
|
|
|
|
OptionsParser::Options parseOptions(int argc, char *argv[])
|
|
{
|
|
StreamKeyValueParser streamKeyValue;
|
|
|
|
OptionsParser parser;
|
|
parser.addOption(OptCamera, OptionString,
|
|
"Specify which camera to operate on", "camera",
|
|
ArgumentRequired, "camera");
|
|
parser.addOption(OptHelp, OptionNone, "Display this help message",
|
|
"help");
|
|
parser.addOption(OptStream, &streamKeyValue,
|
|
"Set configuration of a camera stream", "stream", true);
|
|
|
|
OptionsParser::Options options = parser.parse(argc, argv);
|
|
if (options.isSet(OptHelp))
|
|
parser.usage();
|
|
|
|
return options;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
int ret;
|
|
|
|
OptionsParser::Options options = parseOptions(argc, argv);
|
|
if (!options.valid())
|
|
return EXIT_FAILURE;
|
|
if (options.isSet(OptHelp))
|
|
return 0;
|
|
|
|
struct sigaction sa = {};
|
|
sa.sa_handler = &signalHandler;
|
|
sigaction(SIGINT, &sa, nullptr);
|
|
|
|
CameraManager *cm = new CameraManager();
|
|
|
|
ret = cm->start();
|
|
if (ret) {
|
|
qInfo() << "Failed to start camera manager:"
|
|
<< strerror(-ret);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
MainWindow *mainWindow = new MainWindow(cm, options);
|
|
mainWindow->show();
|
|
ret = app.exec();
|
|
delete mainWindow;
|
|
|
|
cm->stop();
|
|
delete cm;
|
|
|
|
return ret;
|
|
}
|