You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/vvc/cabac: add ff_vvc_cu_act_enabled_flag
Signed-off-by: Wu Jianhua <toqsxw@outlook.com>
This commit is contained in:
@@ -1703,6 +1703,11 @@ int ff_vvc_tu_y_coded_flag(VVCLocalContext *lc)
|
||||
return lc->parse.prev_tu_cbf_y;
|
||||
}
|
||||
|
||||
int ff_vvc_cu_act_enabled_flag(VVCLocalContext *lc)
|
||||
{
|
||||
return GET_CABAC(CU_ACT_ENABLED_FLAG);
|
||||
}
|
||||
|
||||
int ff_vvc_cu_qp_delta_abs(VVCLocalContext *lc)
|
||||
{
|
||||
int v, i, k;
|
||||
|
@@ -120,6 +120,7 @@ int ff_vvc_bcw_idx(VVCLocalContext *lc, int no_backward_pred_flag);
|
||||
int ff_vvc_tu_cb_coded_flag(VVCLocalContext *lc);
|
||||
int ff_vvc_tu_cr_coded_flag(VVCLocalContext *lc, int tu_cb_coded_flag);
|
||||
int ff_vvc_tu_y_coded_flag(VVCLocalContext *lc);
|
||||
int ff_vvc_cu_act_enabled_flag(VVCLocalContext *lc);
|
||||
int ff_vvc_cu_chroma_qp_offset_flag(VVCLocalContext *lc);
|
||||
int ff_vvc_cu_chroma_qp_offset_idx(VVCLocalContext *lc);
|
||||
int ff_vvc_tu_joint_cbcr_residual_flag(VVCLocalContext *lc, int tu_cb_coded_flag, int tu_cr_coded_flag);
|
||||
|
Reference in New Issue
Block a user