JVET-O1168: cu chroma QP offset
1 unresolved thread
1 unresolved thread
CU chroma QP offset
Merge request reports
Activity
added 6 commits
-
7b8872bb...5804363c - 4 commits from branch
jvet:master
- 5914db17 - add macro JVET_O1168_CU_CHROMA_QP_OFFSET
- 3add89bb - clean
-
7b8872bb...5804363c - 4 commits from branch
- Resolved by Xiang Li
added 18 commits
-
3add89bb...ba80d1b1 - 16 commits from branch
jvet:master
- 3ab8deee - add macro JVET_O1168_CU_CHROMA_QP_OFFSET
- ccf3ff2c - clean
-
3add89bb...ba80d1b1 - 16 commits from branch
added 6 commits
-
ccf3ff2c...829fd694 - 4 commits from branch
jvet:master
- 47eee7cb - add macro JVET_O1168_CU_CHROMA_QP_OFFSET
- 632fd90a - clean
-
ccf3ff2c...829fd694 - 4 commits from branch
712 712 { 713 713 int cbOffset; 714 714 int crOffset; 715 #if JVET_O1168_CU_CHROMA_QP_OFFSET 716 int jointCbCrOffset; 717 #endif 715 718 READ_SVLC(cbOffset, "cb_qp_offset_list[i]"); 716 719 CHECK(cbOffset < -12 || cbOffset > 12, "Invalid chroma QP offset"); 717 720 READ_SVLC(crOffset, "cr_qp_offset_list[i]"); 718 721 CHECK(crOffset < -12 || crOffset > 12, "Invalid chroma QP offset"); 722 #if JVET_O1168_CU_CHROMA_QP_OFFSET 723 READ_SVLC(jointCbCrOffset, "joint_cb_cr_qp_offset_list[i]"); fyi, I submitted merge request !719 (merged) yesterday, which aligns the spelling of the JCCR related syntax elements with those in VVC draft 6, v12. The spelling of this element in VLCReader.cpp and VLCWriter.cpp could be aligned as well (
joint_cbcr_qp_offset_list[i]
, no underscore between cb and cr).Christian
changed this line in version 5 of the diff
added 24 commits
-
632fd90a...eab9a095 - 21 commits from branch
jvet:master
- a9417e1b - add macro JVET_O1168_CU_CHROMA_QP_OFFSET
- 63c3bc5e - clean
- 319e341b - align the spelling of JCCR related elements (joint_cbcr_qp_offset_list)
Toggle commit list-
632fd90a...eab9a095 - 21 commits from branch
mentioned in commit 4ecb366e
Please register or sign in to reply