RDPCM RDOQ bug fix and variable name prefix cleanup.
1 unresolved thread
1 unresolved thread
Bug fix in RDPCM RDOQ for sign flag cost calculation and nonzero block detection. Cleaned up variable name prefix inconsistent with its type.
Merge request reports
Activity
- Resolved by Frank Bossen
1180 1180 1181 1181 #if JVET_N0217_MATRIX_INTRAPRED 1182 1182 #if JVET_N0413_RDPCM 1183 for (int uiMode = -2 * int(testBDPCM); uiMode < (int)uiRdModeList.size(); uiMode++) 1183 for (int mode = -2 * int(testBDPCM); mode < (int)uiRdModeList.size(); mode++) 1184 1184 { 1185 1185 // set CU/PU to luma prediction mode 1186 1186 ModeInfo uiOrgMode; 1187 if (testBDPCM && uiMode < 0) 1187 if (testBDPCM && mode < 0) changed this line in version 2 of the diff
mentioned in commit 2a709903
Please register or sign in to reply