diff options
author | Jacopo Mondi <jacopo.mondi@ideasonboard.com> | 2023-10-19 16:01:32 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-10-23 16:06:12 +0300 |
commit | 7e5f1e1cedf5bb299cede5418fab5307c3e65441 (patch) | |
tree | 6aa48965af6e5c8982cc36b8f71bcacee2d96994 /src/apps/cam/main.h | |
parent | c65e40b8480ffb5f50e01a4e6713164c7194a937 (diff) |
apps: cam: Add option to set stream orientation
Add a '--orientation|-o' option to the cam test application to set
an orientation to the image stream.
Supported values are the ones obtained by applying flips to the camera
sensor:
- rot0: no rotation
- rot180: rotate 180 degrees
- flip: vertical flip
- mirror: horizontal flip
Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/apps/cam/main.h')
-rw-r--r-- | src/apps/cam/main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apps/cam/main.h b/src/apps/cam/main.h index 526aecec..4aa959b3 100644 --- a/src/apps/cam/main.h +++ b/src/apps/cam/main.h @@ -17,6 +17,7 @@ enum { OptList = 'l', OptListProperties = 'p', OptMonitor = 'm', + OptOrientation = 'o', OptSDL = 'S', OptStream = 's', OptListControls = 256, |