mirror of https://gitee.com/openkylin/linux.git
[media] v4l: vsp1: bru: Fix minimum input pixel size
According to the spec, the minimum input pixel size for BRU is 1px, not 4px. Signed-off-by: Takanari Hayama <taki@igel.co.jp> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
09f90c53ac
commit
8cb0b63490
|
@ -20,7 +20,7 @@
|
|||
#include "vsp1_bru.h"
|
||||
#include "vsp1_rwpf.h"
|
||||
|
||||
#define BRU_MIN_SIZE 4U
|
||||
#define BRU_MIN_SIZE 1U
|
||||
#define BRU_MAX_SIZE 8190U
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue