Changes between Initial Version and Version 2 of Ticket #656
- Timestamp:
- 7 Nov 2019, 11:24:55 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #656 – Description
initial v2 2 2 3 3 In IntraSearch.cpp::xIntraCodingTUBlock, to restrict DCT2xDCT2 for luma component, following logic is applied: 4 {{{ 4 5 ... 5 6 #if JVET_AHG14_LOSSLESS … … 11 12 #endif 12 13 13 14 14 #if JVET_AHG14_LOSSLESS 15 15 if( ( m_pcEncCfg->getCostMode() == COST_LOSSLESS_CODING && tu.mtsIdx[compID] == 0 ) && 0 == tu.cu->bdpcmMode ) … … 20 20 } 21 21 #endif 22 }}} 22 23 23 24 For chroma, the same logic should be applied to following part: 24 25 26 {{{ 25 27 #if JVET_P0058_CHROMA_TS 26 28 // encoder bugfix: Set loadTr to aovid redundant transform process … … 29 31 m_pcTrQuant->transformNxN(tu, codeCompId, qpCbCr, uiAbsSum, m_CABACEstimator->getCtx()); 30 32 #endif 33 }}}