mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07: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
38 lines
1.0 KiB
Diff
38 lines
1.0 KiB
Diff
From 7274295c319acb1d94243a14f04931918b09b209 Mon Sep 17 00:00:00 2001
|
|
From: Jonas Karlman <jonas@kwiboo.se>
|
|
Date: Sat, 23 May 2020 15:07:15 +0000
|
|
Subject: [PATCH 038/169] HACK: media: uapi: hevc: tiles and num_slices
|
|
|
|
---
|
|
include/media/hevc-ctrls.h | 7 +++++--
|
|
1 file changed, 5 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/include/media/hevc-ctrls.h b/include/media/hevc-ctrls.h
|
|
index a536dab3f..c8618dc68 100644
|
|
--- a/include/media/hevc-ctrls.h
|
|
+++ b/include/media/hevc-ctrls.h
|
|
@@ -83,7 +83,8 @@ struct v4l2_ctrl_hevc_sps {
|
|
__u8 chroma_format_idc;
|
|
__u8 sps_max_sub_layers_minus1;
|
|
|
|
- __u8 padding[6];
|
|
+ __u8 num_slices;
|
|
+ __u8 padding[5];
|
|
|
|
__u64 flags;
|
|
};
|
|
@@ -208,7 +209,9 @@ struct v4l2_ctrl_hevc_slice_params {
|
|
__u16 short_term_ref_pic_set_size;
|
|
__u16 long_term_ref_pic_set_size;
|
|
|
|
- __u8 padding[4];
|
|
+ __u32 num_entry_point_offsets;
|
|
+ __u32 entry_point_offset_minus1[256];
|
|
+ __u8 padding[8];
|
|
|
|
/* ISO/IEC 23008-2, ITU-T Rec. H.265: Weighted prediction parameter */
|
|
struct v4l2_hevc_pred_weight_table pred_weight_table;
|
|
--
|
|
2.35.3
|
|
|