The cam and qcam test application share code, currently through a crude hack that references the cam source files directly from the qcam meson.build file. To prepare for the introduction of hosting that code in a static library, move all applications to src/apps/. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
27 lines
438 B
C
27 lines
438 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* main.h - Cam application
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
enum {
|
|
OptCamera = 'c',
|
|
OptCapture = 'C',
|
|
OptDisplay = 'D',
|
|
OptFile = 'F',
|
|
OptHelp = 'h',
|
|
OptInfo = 'I',
|
|
OptList = 'l',
|
|
OptListProperties = 'p',
|
|
OptMonitor = 'm',
|
|
OptSDL = 'S',
|
|
OptStream = 's',
|
|
OptListControls = 256,
|
|
OptStrictFormats = 257,
|
|
OptMetadata = 258,
|
|
OptCaptureScript = 259,
|
|
};
|