mirror of
https://github.com/armbian/build.git
synced 2025-08-11 05:36:57 +02:00
I have changed the way the patches are generated a bit. Instead of using orange-pi branch from megous tree for 6.6 kernel, I have used the following kernel branches a83t-suspend, af8133j, anx, audio, axp, cam, drm, err, fixes, mbus, modem, opi3, pb, pinetab, pp, ppkb, samuel, speed, tbs-a711, ths These branches were carefully chosen to include only allwinner related patches and remove importing of the rockchip related patches into the allwinner kernel. Following patches are modified to fix patch application failure - patches.armbian/arm64-dts-sun50i-h616-orangepi-zero2-reg_usb1_vbus-status-ok.patch - patches.armbian/arm64-dts-sun50i-h616-orangepi-zero2-Enable-GPU-mali.patch - patches.armbian/arm64-dts-allwinner-h616-Add-efuse_xlate-cpu-frequency-scaling-v1_6_2.patch - patches.armbian/arm64-dts-allwinner-h616-LED-green_power_on-red_status_heartbeat.patch - patches.armbian/arm64-dts-allwinner-overlay-Add-Overlays-for-sunxi64.patch - patches.armbian/arm64-dts-sun50i-h616-bigtreetech-cb1.patch Following patches are modified because of kernel api change to fix compilation failure - patches.armbian/drv-gpu-drm-sun4i-Add-HDMI-audio-sun4i-hdmi-encoder.patch - patches.armbian/drv-of-Device-Tree-Overlay-ConfigFS-interface.patch
67 lines
2.0 KiB
Diff
67 lines
2.0 KiB
Diff
From 4ca80443bbab08aede430ab4f13e2818836f19b5 Mon Sep 17 00:00:00 2001
|
|
From: Jonas Karlman <jonas@kwiboo.se>
|
|
Date: Sat, 23 May 2020 15:03:46 +0000
|
|
Subject: [PATCH 037/170] WIP: media: uapi: hevc: add fields needed for rkvdec
|
|
|
|
NOTE: these fields are used by rkvdec hevc backend
|
|
|
|
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
|
|
---
|
|
include/media/hevc-ctrls.h | 12 ++++++++++--
|
|
1 file changed, 10 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/include/media/hevc-ctrls.h b/include/media/hevc-ctrls.h
|
|
index 01ccda48d..a536dab3f 100644
|
|
--- a/include/media/hevc-ctrls.h
|
|
+++ b/include/media/hevc-ctrls.h
|
|
@@ -58,6 +58,8 @@ enum v4l2_mpeg_video_hevc_start_code {
|
|
/* The controls are not stable at the moment and will likely be reworked. */
|
|
struct v4l2_ctrl_hevc_sps {
|
|
/* ISO/IEC 23008-2, ITU-T Rec. H.265: Sequence parameter set */
|
|
+ __u8 video_parameter_set_id;
|
|
+ __u8 seq_parameter_set_id;
|
|
__u16 pic_width_in_luma_samples;
|
|
__u16 pic_height_in_luma_samples;
|
|
__u8 bit_depth_luma_minus8;
|
|
@@ -81,6 +83,8 @@ struct v4l2_ctrl_hevc_sps {
|
|
__u8 chroma_format_idc;
|
|
__u8 sps_max_sub_layers_minus1;
|
|
|
|
+ __u8 padding[6];
|
|
+
|
|
__u64 flags;
|
|
};
|
|
|
|
@@ -108,6 +112,7 @@ struct v4l2_ctrl_hevc_sps {
|
|
|
|
struct v4l2_ctrl_hevc_pps {
|
|
/* ISO/IEC 23008-2, ITU-T Rec. H.265: Picture parameter set */
|
|
+ __u8 pic_parameter_set_id;
|
|
__u8 num_extra_slice_header_bits;
|
|
__u8 num_ref_idx_l0_default_active_minus1;
|
|
__u8 num_ref_idx_l1_default_active_minus1;
|
|
@@ -123,7 +128,7 @@ struct v4l2_ctrl_hevc_pps {
|
|
__s8 pps_tc_offset_div2;
|
|
__u8 log2_parallel_merge_level_minus2;
|
|
|
|
- __u8 padding[4];
|
|
+ __u8 padding;
|
|
__u64 flags;
|
|
};
|
|
|
|
@@ -200,7 +205,10 @@ struct v4l2_ctrl_hevc_slice_params {
|
|
__u8 ref_idx_l0[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
|
|
__u8 ref_idx_l1[V4L2_HEVC_DPB_ENTRIES_NUM_MAX];
|
|
|
|
- __u8 padding;
|
|
+ __u16 short_term_ref_pic_set_size;
|
|
+ __u16 long_term_ref_pic_set_size;
|
|
+
|
|
+ __u8 padding[4];
|
|
|
|
/* ISO/IEC 23008-2, ITU-T Rec. H.265: Weighted prediction parameter */
|
|
struct v4l2_hevc_pred_weight_table pred_weight_table;
|
|
--
|
|
2.35.3
|
|
|