Changes between Initial Version and Version 2 of Ticket #656


Ignore:
Timestamp:
7 Nov 2019, 11:24:55 (4 years ago)
Author:
ksuehring
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #656 – Description

    initial v2  
    22
    33In IntraSearch.cpp::xIntraCodingTUBlock, to restrict DCT2xDCT2 for luma component, following logic is applied:
     4{{{
    45...
    56#if JVET_AHG14_LOSSLESS
     
    1112#endif
    1213
    13 
    1414#if JVET_AHG14_LOSSLESS
    1515  if( ( m_pcEncCfg->getCostMode() == COST_LOSSLESS_CODING && tu.mtsIdx[compID] == 0 ) && 0 == tu.cu->bdpcmMode )
     
    2020  }
    2121#endif
     22}}}
    2223
    2324For chroma, the same logic should be applied to following part:
    2425
     26{{{
    2527#if JVET_P0058_CHROMA_TS
    2628    // encoder bugfix: Set loadTr to aovid redundant transform process
     
    2931    m_pcTrQuant->transformNxN(tu, codeCompId, qpCbCr, uiAbsSum, m_CABACEstimator->getCtx());
    3032#endif
     33}}}