[PATCH 13/18] media: coda: Fix support for all mpeg4 levels
From: Sergey Khimich
Date: Fri Mar 14 2025 - 11:32:56 EST
From: Vladimir Yakovlev <vovchkir@xxxxxxxxx>
Mpeg-4 level also depends on img resolution.
Therefore, driver must support all levels in the range of supported
resolutions. Coda's hw can calculate level automatically.
Co-developed-by: Sergey Khimich <serghox@xxxxxxxxx>
Signed-off-by: Sergey Khimich <serghox@xxxxxxxxx>
Signed-off-by: Vladimir Yakovlev <vovchkir@xxxxxxxxx>
---
drivers/media/platform/chips-media/coda/coda-common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/platform/chips-media/coda/coda-common.c b/drivers/media/platform/chips-media/coda/coda-common.c
index 555b73816952..29b01ade8829 100644
--- a/drivers/media/platform/chips-media/coda/coda-common.c
+++ b/drivers/media/platform/chips-media/coda/coda-common.c
@@ -2383,7 +2383,7 @@ static void coda_encode_ctrls(struct coda_ctx *ctx)
v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL,
V4L2_MPEG_VIDEO_MPEG4_LEVEL_5,
- ~(1 << V4L2_MPEG_VIDEO_MPEG4_LEVEL_5),
+ 0,
V4L2_MPEG_VIDEO_MPEG4_LEVEL_5);
}
v4l2_ctrl_new_std_menu(&ctx->ctrls, &coda_ctrl_ops,
--
2.30.2