From 99d4e8a7fc691b32373a4327ad8130921da9ddfd Mon Sep 17 00:00:00 2001 From: qinlong Date: Thu, 13 Oct 2022 20:27:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=B9=E9=85=8D=E5=8E=9F=E5=9E=8B=E6=9C=BA?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: qinlong --- common/include/dscreen_constants.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/include/dscreen_constants.h b/common/include/dscreen_constants.h index f3c1fcf6..e3f55a66 100644 --- a/common/include/dscreen_constants.h +++ b/common/include/dscreen_constants.h @@ -74,13 +74,13 @@ constexpr uint32_t DSCREEN_MAX_RECV_DATA_LEN = 104857600; constexpr uint32_t DSCREEN_MAX_VIDEO_DATA_WIDTH = 2560; /* Screen max video data height */ -constexpr uint32_t DSCREEN_MAX_VIDEO_DATA_HEIGHT = 1600; +constexpr uint32_t DSCREEN_MAX_VIDEO_DATA_HEIGHT = 2772; /* Screen max screen data width */ constexpr uint32_t DSCREEN_MAX_SCREEN_DATA_WIDTH = 2560; /* Screen max screen data height */ -constexpr uint32_t DSCREEN_MAX_SCREEN_DATA_HEIGHT = 1600; +constexpr uint32_t DSCREEN_MAX_SCREEN_DATA_HEIGHT = 2772; /* YUV420 buffer size max size */ constexpr int64_t MAX_YUV420_BUFFER_SIZE = 2560 * 1600 * (3 / 2) * 2; -- Gitee