1# Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd. 2# SPDX-License-Identifier: Apache-2.0 3 4mainmenu "Video capture sample application" 5 6menu "Video capture configuration" 7 8config VIDEO_FRAME_HEIGHT 9 int "Height of the video frame" 10 default 0 11 help 12 Height of the video frame. If set to 0, the default height is used. 13 14config VIDEO_FRAME_WIDTH 15 int "Width of the video frame" 16 default 0 17 help 18 Width of the video frame. If set to 0, the default width is used. 19 20config VIDEO_PIXEL_FORMAT 21 string "Pixel format of the video frame" 22 help 23 Pixel format of the video frame. If not set, the default pixel format is used. 24 25config VIDEO_CTRL_HFLIP 26 bool "Mirror the video frame horizontally" 27 help 28 If set, mirror the video frame horizontally 29 30endmenu 31 32source "Kconfig.zephyr" 33