mirror of
https://github.com/armbian/build.git
synced 2025-08-09 20:56:57 +02:00
* sunxi-5.18: add megous patches: tag: orange-pi-5.18-20220627-1924 * tools: mk_format_patch: ignore-matching-lines git version * sunxi-5.18: re-extracted armbian patches after being applied to 5.18.8 * sunxi-5.18: switch to version tag=v5.18.8
91 lines
3.2 KiB
Diff
91 lines
3.2 KiB
Diff
From d7496f9c682843a48b22045866195600ebfdd7f9 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 005/169] 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 +++++++++++++++++++
|
|
1 file changed, 57 insertions(+)
|
|
|
|
diff --git a/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst b/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
|
|
index 4cd7c541f..7df1a0172 100644
|
|
--- a/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
|
|
+++ b/Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
|
|
@@ -3105,6 +3105,63 @@ enum v4l2_mpeg_video_hevc_size_of_length_field -
|
|
|
|
.. 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
|
|
+
|
|
+``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
|
|
--
|
|
2.35.3
|
|
|