Commit 661eaa3c authored by Ram Prasad's avatar Ram Prasad Committed by Mauro Carvalho Chehab
Browse files

media: ti-vpe: Set MAX height supported to 2048 pixels



VPE's max height supported MAX_H is set to 1184 which is the
padded height from VC1 decoder output.

In case of 90, 270 degree rotated video processing, input to
VPE will be 1080x1920, 720x1280 etc and MAX_H needs to be set
correct value. Setting MAX_H to 2048 as worst case height.

Signed-off-by: default avatarRam Prasad <x0038811@ti.com>
Signed-off-by: default avatarBenoit Parrot <bparrot@ti.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent b2bb3d82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@
#define MIN_W		32
#define MIN_H		32
#define MAX_W		2048
#define MAX_H		1184
#define MAX_H		2048

/* required alignments */
#define S_ALIGN		0	/* multiple of 1 */