mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
media: coda: disable decoder crop selections
Disable output side crop selections for the decoder. This fixes the following v4l2-compliance complaint: fail: v4l2-test-formats.cpp(1576): IS_DECODER(node) test Cropping: FAIL Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
ee8951e56c
commit
4ffd31463c
@ -933,7 +933,8 @@ static int coda_g_selection(struct file *file, void *fh,
|
||||
rsel = &r;
|
||||
/* fallthrough */
|
||||
case V4L2_SEL_TGT_CROP:
|
||||
if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
|
||||
if (s->type != V4L2_BUF_TYPE_VIDEO_OUTPUT ||
|
||||
ctx->inst_type == CODA_INST_DECODER)
|
||||
return -EINVAL;
|
||||
break;
|
||||
case V4L2_SEL_TGT_COMPOSE_BOUNDS:
|
||||
|
Loading…
Reference in New Issue
Block a user