mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
41 lines
1.8 KiB
Diff
41 lines
1.8 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
|
Date: Sat, 10 Apr 2021 18:55:09 +0200
|
|
Subject: [PATCH] media: cedrus: Fix HEVC status macros
|
|
|
|
Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net>
|
|
---
|
|
.../staging/media/sunxi/cedrus/cedrus_regs.h | 17 +++++++++--------
|
|
1 file changed, 9 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/drivers/staging/media/sunxi/cedrus/cedrus_regs.h b/drivers/staging/media/sunxi/cedrus/cedrus_regs.h
|
|
index 6cb1c279790f..7ab3a2b0aa10 100644
|
|
--- a/drivers/staging/media/sunxi/cedrus/cedrus_regs.h
|
|
+++ b/drivers/staging/media/sunxi/cedrus/cedrus_regs.h
|
|
@@ -443,16 +443,17 @@
|
|
#define VE_DEC_H265_STATUS_STCD_BUSY BIT(21)
|
|
#define VE_DEC_H265_STATUS_WB_BUSY BIT(20)
|
|
#define VE_DEC_H265_STATUS_BS_DMA_BUSY BIT(19)
|
|
-#define VE_DEC_H265_STATUS_IQIT_BUSY BIT(18)
|
|
+#define VE_DEC_H265_STATUS_IT_BUSY BIT(18)
|
|
#define VE_DEC_H265_STATUS_INTER_BUSY BIT(17)
|
|
#define VE_DEC_H265_STATUS_MORE_DATA BIT(16)
|
|
-#define VE_DEC_H265_STATUS_VLD_BUSY BIT(14)
|
|
-#define VE_DEC_H265_STATUS_DEBLOCKING_BUSY BIT(13)
|
|
-#define VE_DEC_H265_STATUS_DEBLOCKING_DRAM_BUSY BIT(12)
|
|
-#define VE_DEC_H265_STATUS_INTRA_BUSY BIT(11)
|
|
-#define VE_DEC_H265_STATUS_SAO_BUSY BIT(10)
|
|
-#define VE_DEC_H265_STATUS_MVP_BUSY BIT(9)
|
|
-#define VE_DEC_H265_STATUS_SWDEC_BUSY BIT(8)
|
|
+#define VE_DEC_H265_STATUS_DBLK_BUSY BIT(15)
|
|
+#define VE_DEC_H265_STATUS_IREC_BUSY BIT(14)
|
|
+#define VE_DEC_H265_STATUS_INTRA_BUSY BIT(13)
|
|
+#define VE_DEC_H265_STATUS_MCRI_BUSY BIT(12)
|
|
+#define VE_DEC_H265_STATUS_IQIT_BUSY BIT(11)
|
|
+#define VE_DEC_H265_STATUS_MVP_BUSY BIT(10)
|
|
+#define VE_DEC_H265_STATUS_IS_BUSY BIT(9)
|
|
+#define VE_DEC_H265_STATUS_VLD_BUSY BIT(8)
|
|
#define VE_DEC_H265_STATUS_OVER_TIME BIT(3)
|
|
#define VE_DEC_H265_STATUS_VLD_DATA_REQ BIT(2)
|
|
#define VE_DEC_H265_STATUS_ERROR BIT(1)
|