mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
linux (Rockchip): rebase patches for 5.19.2-rc1
This commit is contained in:
parent
e59e3b11a1
commit
e9472eeb28
@ -2508,7 +2508,7 @@ index 000000000000..c3cceba837c2
|
||||
+ writel_relaxed(refer_addr | reg,
|
||||
+ rkvdec->regs + RKVDEC_REG_H264_BASE_REFER(i));
|
||||
+
|
||||
+ reg = RKVDEC_POC_REFER(i < sl_params->num_active_dpb_entries ? dpb[i].pic_order_cnt[0] : 0);
|
||||
+ reg = RKVDEC_POC_REFER(i < sl_params->num_active_dpb_entries ? dpb[i].pic_order_cnt_val : 0);
|
||||
+ writel_relaxed(reg,
|
||||
+ rkvdec->regs + RKVDEC_REG_H264_POC_REFER0(i));
|
||||
+ }
|
||||
@ -2857,8 +2857,8 @@ index c3cceba837c2..5c341b5fa534 100644
|
||||
writel_relaxed(refer_addr | reg,
|
||||
rkvdec->regs + RKVDEC_REG_H264_BASE_REFER(i));
|
||||
|
||||
- reg = RKVDEC_POC_REFER(i < sl_params->num_active_dpb_entries ? dpb[i].pic_order_cnt[0] : 0);
|
||||
+ reg = RKVDEC_POC_REFER(i < decode_params->num_active_dpb_entries ? dpb[i].pic_order_cnt[0] : 0);
|
||||
- reg = RKVDEC_POC_REFER(i < sl_params->num_active_dpb_entries ? dpb[i].pic_order_cnt_val : 0);
|
||||
+ reg = RKVDEC_POC_REFER(i < decode_params->num_active_dpb_entries ? dpb[i].pic_order_cnt_val : 0);
|
||||
writel_relaxed(reg,
|
||||
rkvdec->regs + RKVDEC_REG_H264_POC_REFER0(i));
|
||||
}
|
||||
@ -3124,7 +3124,7 @@ index b5bb4c083dbc..8467084165df 100644
|
||||
REF_PIC_LONG_TERM_L0(i));
|
||||
WRITE_RPS(sl_params->ref_idx_l0[i], REF_PIC_IDX_L0(i));
|
||||
+
|
||||
+ if (dpb[sl_params->ref_idx_l0[i]].pic_order_cnt[0] > sl_params->slice_pic_order_cnt)
|
||||
+ if (dpb[sl_params->ref_idx_l0[i]].pic_order_cnt_val > sl_params->slice_pic_order_cnt)
|
||||
+ lowdelay = 0;
|
||||
+
|
||||
}
|
||||
@ -3134,7 +3134,7 @@ index b5bb4c083dbc..8467084165df 100644
|
||||
REF_PIC_LONG_TERM_L1(i));
|
||||
WRITE_RPS(sl_params->ref_idx_l1[i], REF_PIC_IDX_L1(i));
|
||||
+
|
||||
+ if (dpb[sl_params->ref_idx_l1[i]].pic_order_cnt[0] > sl_params->slice_pic_order_cnt)
|
||||
+ if (dpb[sl_params->ref_idx_l1[i]].pic_order_cnt_val > sl_params->slice_pic_order_cnt)
|
||||
+ lowdelay = 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user