mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 04:04:43 +01:00
media: mediatek: vcodec: Don't try to decode 422/444 VP9
This is not supported by the hardware and trying to decode these leads to LAT timeout errors. Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
This commit is contained in:
parent
1b78aae631
commit
3e92d7e493
1 changed files with 6 additions and 0 deletions
|
|
@ -518,6 +518,12 @@ static int mtk_vdec_s_ctrl(struct v4l2_ctrl *ctrl)
|
|||
mtk_v4l2_vdec_err(ctx, "VP9: bit_depth:%d", frame->bit_depth);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (!(frame->flags & V4L2_VP9_FRAME_FLAG_X_SUBSAMPLING) ||
|
||||
!(frame->flags & V4L2_VP9_FRAME_FLAG_Y_SUBSAMPLING)) {
|
||||
mtk_v4l2_vdec_err(ctx, "VP9: only 420 subsampling is supported");
|
||||
return -EINVAL;
|
||||
}
|
||||
break;
|
||||
case V4L2_CID_STATELESS_AV1_SEQUENCE:
|
||||
seq = (struct v4l2_ctrl_av1_sequence *)hdr_ctrl->p_new.p;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue