From: Yunfei Dong Date: Thu, 12 May 2022 02:19:43 +0000 (+0200) Subject: media: mediatek: vcodec: disable vp8 4K capability X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=abd12e85fc95c8ec7277bfe42da222937620a949;p=linux.git media: mediatek: vcodec: disable vp8 4K capability For vp8 not support 4K, need to disable it. Signed-off-by: Yunfei Dong Tested-by: NĂ­colas F. R. A. Prado Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c b/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c index 97971d8f444b7..fae0dfc606b10 100644 --- a/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c +++ b/drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c @@ -435,7 +435,8 @@ static int vidioc_vdec_s_fmt(struct file *file, void *priv, if (fmt == NULL) return -EINVAL; - if (!(ctx->dev->dec_capability & VCODEC_CAPABILITY_4K_DISABLED)) { + if (!(ctx->dev->dec_capability & VCODEC_CAPABILITY_4K_DISABLED) && + fmt->fourcc != V4L2_PIX_FMT_VP8_FRAME) { mtk_v4l2_debug(3, "4K is enabled"); ctx->max_width = VCODEC_DEC_4K_CODED_WIDTH; ctx->max_height = VCODEC_DEC_4K_CODED_HEIGHT;