diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2019-07-13 16:51:19 +0200 |
---|---|---|
committer | Jacopo Mondi <jacopo@jmondi.org> | 2019-07-17 04:49:38 +0200 |
commit | a5ebcea8c0080bea478514c6fa6dd83c28adb986 (patch) | |
tree | df2ad6b86d40a8c12bdb339d8f9a460a6f26dda4 /src/qcam/main_window.h | |
parent | fae053307dcc6807dd8ab127294c1fe5c5bb2d72 (diff) |
libcamera: qcam: Allow specifying sizes on command line
Add a '-s|--size' option to qcam to allow selecting the stream
resolution using a command line option.
If the sizes are not supported by the camera, they get automatically
adjusted and the user notified via an output message.
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/qcam/main_window.h')
-rw-r--r-- | src/qcam/main_window.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qcam/main_window.h b/src/qcam/main_window.h index f58cb6a6..b45cbca7 100644 --- a/src/qcam/main_window.h +++ b/src/qcam/main_window.h @@ -27,6 +27,7 @@ class ViewFinder; enum { OptCamera = 'c', OptHelp = 'h', + OptSize = 's', }; class MainWindow : public QMainWindow |