mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From 15e99400c562118a9ac674700a9da43bf57fae6d Mon Sep 17 00:00:00 2001
|
|
From: Christian Hewitt <christianshewitt@gmail.com>
|
|
Date: Sun, 21 Nov 2021 19:12:07 +0000
|
|
Subject: [PATCH 46/92] WIP: drivers: meson: vdec: add HEVC support to GXBB
|
|
|
|
It's not clear whether the GXL firmware is the same one used with GXBB
|
|
but let's try it and see!
|
|
|
|
Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
|
|
---
|
|
drivers/staging/media/meson/vdec/vdec_platform.c | 12 ++++++++++++
|
|
1 file changed, 12 insertions(+)
|
|
|
|
diff --git a/drivers/staging/media/meson/vdec/vdec_platform.c b/drivers/staging/media/meson/vdec/vdec_platform.c
|
|
index 8592cb3aaea9..810039a02b44 100644
|
|
--- a/drivers/staging/media/meson/vdec/vdec_platform.c
|
|
+++ b/drivers/staging/media/meson/vdec/vdec_platform.c
|
|
@@ -16,6 +16,18 @@
|
|
|
|
static const struct amvdec_format vdec_formats_gxbb[] = {
|
|
{
|
|
+ .pixfmt = V4L2_PIX_FMT_HEVC,
|
|
+ .min_buffers = 4,
|
|
+ .max_buffers = 24,
|
|
+ .max_width = 3840,
|
|
+ .max_height = 2160,
|
|
+ .vdec_ops = &vdec_hevc_ops,
|
|
+ .codec_ops = &codec_hevc_ops,
|
|
+ .firmware_path = "meson/vdec/gxl_hevc.bin",
|
|
+ .pixfmts_cap = { V4L2_PIX_FMT_NV12M, 0 },
|
|
+ .flags = V4L2_FMT_FLAG_COMPRESSED |
|
|
+ V4L2_FMT_FLAG_DYN_RESOLUTION,
|
|
+ }, {
|
|
.pixfmt = V4L2_PIX_FMT_H264,
|
|
.min_buffers = 2,
|
|
.max_buffers = 24,
|
|
--
|
|
2.34.1
|
|
|