[RFC 6/6] media: hantro: add NV12 single-plane support for STM32MP25 VENC

From: Hugues Fruchet
Date: Wed Oct 04 2023 - 06:39:02 EST


Add support of encoding from NV12 single-plane frame.

Signed-off-by: Hugues Fruchet <hugues.fruchet@xxxxxxxxxxx>
---
.../media/platform/verisilicon/stm32mp25_venc_hw.c | 13 +++++++++++++
1 file changed, 13 insertions(+)

diff --git a/drivers/media/platform/verisilicon/stm32mp25_venc_hw.c b/drivers/media/platform/verisilicon/stm32mp25_venc_hw.c
index 2176eccd1f79..d66f20bee9eb 100644
--- a/drivers/media/platform/verisilicon/stm32mp25_venc_hw.c
+++ b/drivers/media/platform/verisilicon/stm32mp25_venc_hw.c
@@ -21,6 +21,19 @@
*/

static const struct hantro_fmt stm32mp25_venc_fmts[] = {
+ {
+ .fourcc = V4L2_PIX_FMT_NV12,
+ .codec_mode = HANTRO_MODE_NONE,
+ .enc_fmt = ROCKCHIP_VPU_ENC_FMT_YUV420SP,
+ .frmsize = {
+ .min_width = 96,
+ .max_width = 8176,
+ .step_width = MB_DIM,
+ .min_height = 32,
+ .max_height = 8176,
+ .step_height = MB_DIM,
+ },
+ },
{
.fourcc = V4L2_PIX_FMT_YUV420M,
.codec_mode = HANTRO_MODE_NONE,
--
2.25.1