mirror of
https://github.com/armbian/build.git
synced 2025-08-09 20:56:57 +02:00
* Recycling of megous v5.16.4 patches The patches were sorted as far as possible. Some patches are renamed according to their place of application. The length of the patch name has been changed to improve readability using the `git format-patch --filename-max-length=75` method. The folder containing the patches will have the name `patches.name` and the corresponding file `series.name` for the convenience of processing and moving them upstream. But the control file remains `series.conf`. Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Add a series of armbian patches for 5.16 Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Remove patches whose fixes are already in the kernel Signed-off-by: The-going <48602507+The-going@users.noreply.github.com>
95 lines
3.4 KiB
Diff
95 lines
3.4 KiB
Diff
From b0a5f4e53bb4de44c30c7b038f2660800be6c07a Mon Sep 17 00:00:00 2001
|
|
From: Benjamin Gaignard <benjamin.gaignard@collabora.com>
|
|
Date: Thu, 15 Jul 2021 17:12:22 +0200
|
|
Subject: [PATCH 043/101] Doc:u-api:media:v4l: Add scaling matrix control
|
|
|
|
HEVC scaling lists are used for the scaling process for transform
|
|
coefficients.
|
|
V4L2_HEVC_SPS_FLAG_SCALING_LIST_ENABLED has to set when they are
|
|
encoded in the bitstream.
|
|
|
|
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
|
|
Reviewed-by: Jernej Skrabec <jernej.skrabec@gmail.com>
|
|
Reviewed-by: Ezequiel Garcia <ezequiel@collabora.com>
|
|
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
|
|
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
|
|
---
|
|
.../media/v4l/ext-ctrls-codec.rst | 57 +++++++++++++++++++
|
|
.../media/v4l/vidioc-queryctrl.rst | 6 ++
|
|
drivers/media/v4l2-core/v4l2-ctrls-core.c | 6 ++
|
|
drivers/media/v4l2-core/v4l2-ctrls-defs.c | 4 ++
|
|
include/media/hevc-ctrls.h | 11 ++++
|
|
5 files changed, 84 insertions(+)
|
|
|
|
diff --git a/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst b/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
|
|
index 976d34445..e141f0e4e 100644
|
|
--- a/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
|
|
+++ b/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
|
|
@@ -3088,6 +3088,63 @@ enum v4l2_mpeg_video_hevc_size_of_length_field -
|
|
|
|
\normalsize
|
|
|
|
+``V4L2_CID_MPEG_VIDEO_HEVC_SCALING_MATRIX (struct)``
|
|
+ Specifies the HEVC scaling matrix parameters used for the scaling process
|
|
+ for transform coefficients.
|
|
+ These matrix and parameters are defined according to :ref:`hevc`.
|
|
+ They are described in section 7.4.5 "Scaling list data semantics" of
|
|
+ the specification.
|
|
+
|
|
+.. c:type:: v4l2_ctrl_hevc_scaling_matrix
|
|
+
|
|
+.. raw:: latex
|
|
+
|
|
+ \scriptsize
|
|
+
|
|
+.. tabularcolumns:: |p{5.4cm}|p{6.8cm}|p{5.1cm}|
|
|
+
|
|
+.. cssclass:: longtable
|
|
+
|
|
+.. flat-table:: struct v4l2_ctrl_hevc_scaling_matrix
|
|
+ :header-rows: 0
|
|
+ :stub-columns: 0
|
|
+ :widths: 1 1 2
|
|
+
|
|
+ * - __u8
|
|
+ - ``scaling_list_4x4[6][16]``
|
|
+ - Scaling list is used for the scaling process for transform
|
|
+ coefficients. The values on each scaling list are expected
|
|
+ in raster scan order.
|
|
+ * - __u8
|
|
+ - ``scaling_list_8x8[6][64]``
|
|
+ - Scaling list is used for the scaling process for transform
|
|
+ coefficients. The values on each scaling list are expected
|
|
+ in raster scan order.
|
|
+ * - __u8
|
|
+ - ``scaling_list_16x16[6][64]``
|
|
+ - Scaling list is used for the scaling process for transform
|
|
+ coefficients. The values on each scaling list are expected
|
|
+ in raster scan order.
|
|
+ * - __u8
|
|
+ - ``scaling_list_32x32[2][64]``
|
|
+ - Scaling list is used for the scaling process for transform
|
|
+ coefficients. The values on each scaling list are expected
|
|
+ in raster scan order.
|
|
+ * - __u8
|
|
+ - ``scaling_list_dc_coef_16x16[6]``
|
|
+ - Scaling list is used for the scaling process for transform
|
|
+ coefficients. The values on each scaling list are expected
|
|
+ in raster scan order.
|
|
+ * - __u8
|
|
+ - ``scaling_list_dc_coef_32x32[2]``
|
|
+ - Scaling list is used for the scaling process for transform
|
|
+ coefficients. The values on each scaling list are expected
|
|
+ in raster scan order.
|
|
+
|
|
+.. raw:: latex
|
|
+
|
|
+ \normalsize
|
|
+
|
|
.. c:type:: v4l2_hevc_dpb_entry
|
|
|
|
.. raw:: latex
|
|
--
|
|
2.31.1
|
|
|