media: rkvdec: increase max supported height for H.264

[ Upstream commit f000e6ca2d ]

After testing it is possible for the hardware to decode H264
bistream with a height up to 2560.

Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
Fixes: cd33c83044 ("media: rkvdec: Add the rkvdec driver")
Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Benjamin Gaignard 2023-07-17 17:06:11 +02:00 committed by Greg Kroah-Hartman
parent 715c0200b4
commit 9ada33ee83
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ static const struct rkvdec_coded_fmt_desc rkvdec_coded_fmts[] = {
.max_width = 4096,
.step_width = 16,
.min_height = 48,
.max_height = 2304,
.max_height = 2560,
.step_height = 16,
},
.ctrls = &rkvdec_h264_ctrls,