1# VIDEO resolution settings
2
3# Copyright (c) 2024 Charles Dias <charlesdias.cd@outlook.com>
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Video capture to LVGL sample application"
7
8menu "Video capture configuration"
9
10config VIDEO_WIDTH
11	int "Define the width of the video"
12	default 320
13
14config VIDEO_HEIGHT
15	int "Define the height of the video"
16	default 240
17
18config VIDEO_HFLIP
19	bool "Horizontal flip"
20	default n
21
22config VIDEO_VFLIP
23	bool "Vertical flip"
24	default n
25
26endmenu
27
28source "Kconfig.zephyr"
29