Add an option to mirror the video image horizontally. This helps to avoid doing so at the post-processing step by using additional HW such as PxP on i.MX RT platforms. Signed-off-by: Phi Bang Nguyen <phibang.nguyen@nxp.com>
33 lines
784 B
Plaintext
33 lines
784 B
Plaintext
# Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
mainmenu "Video capture sample application"
|
|
|
|
menu "Video capture configuration"
|
|
|
|
config VIDEO_FRAME_HEIGHT
|
|
int "Height of the video frame"
|
|
default 0
|
|
help
|
|
Height of the video frame. If set to 0, the default height is used.
|
|
|
|
config VIDEO_FRAME_WIDTH
|
|
int "Width of the video frame"
|
|
default 0
|
|
help
|
|
Width of the video frame. If set to 0, the default width is used.
|
|
|
|
config VIDEO_PIXEL_FORMAT
|
|
string "Pixel format of the video frame"
|
|
help
|
|
Pixel format of the video frame. If not set, the default pixel format is used.
|
|
|
|
config VIDEO_CTRL_HFLIP
|
|
bool "Mirror the video frame horizontally"
|
|
help
|
|
If set, mirror the video frame horizontally
|
|
|
|
endmenu
|
|
|
|
source "Kconfig.zephyr"
|