From e98db0e5b09f3fa1da413a168a60f6a086177102 Mon Sep 17 00:00:00 2001 From: Yu Qiaowei Date: Thu, 14 Apr 2022 21:56:42 +0800 Subject: [PATCH] video: rockchip: rga3: Modify the minimum input and output of rga3 to 68*2 Signed-off-by: Yu Qiaowei Change-Id: I27282033ee15bed15dcbbf4e8ac96524a72a86ff --- drivers/video/rockchip/rga3/rga_hw_config.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/video/rockchip/rga3/rga_hw_config.c b/drivers/video/rockchip/rga3/rga_hw_config.c index fb0312def0c2..944c48febdd2 100644 --- a/drivers/video/rockchip/rga3/rga_hw_config.c +++ b/drivers/video/rockchip/rga3/rga_hw_config.c @@ -253,8 +253,8 @@ const struct rga_win_data rga2e_win_data[] = { const struct rga_hw_data rga3_data = { .version = 0, - .min_input = { 128, 128 }, - .min_output = { 128, 128 }, + .min_input = { 68, 2 }, + .min_output = { 68, 2 }, .max_input = { 8176, 8176 }, .max_output = { 8128, 8128 }, @@ -277,8 +277,8 @@ const struct rga_hw_data rga3_data = { const struct rga_hw_data rga2e_data = { .version = 0, - .min_input = { 0, 0 }, - .min_output = { 0, 0 }, + .min_input = { 2, 2 }, + .min_output = { 2, 2 }, .max_input = { 8192, 8192 }, .max_output = { 4096, 4096 },