Ignore:
Timestamp:
14 Jul 2015, 12:31:09 (9 years ago)
Author:
tech
Message:

Merged HTM-14.1-update-dev3@1273.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-14.1-update-dev2/source/Lib/TLibEncoder/TEncEntropy.cpp

    r1225 r1274  
    151151Void TEncEntropy::encodeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
    152152{
    153 #if H_3D_ARP
     153#if NH_3D_ARP
    154154  if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() || pcCU->getARPW( uiAbsPartIdx ) > 0 )
    155155#else
     
    188188#endif
    189189
    190 #if H_3D_ARP
     190#if NH_3D_ARP
    191191Void TEncEntropy::encodeARPW( TComDataCU* pcCU, UInt uiAbsPartIdx )
    192192{
     
    874874
    875875#endif
    876 #if H_3D_DBBP
     876#if NH_3D_DBBP
    877877Void TEncEntropy::encodeDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD )
    878878{
     879  if( bRD )
     880  {
     881    uiAbsPartIdx = 0;
     882  }
     883 
    879884  if( pcCU->getSlice()->getDepthBasedBlkPartFlag() &&
    880885    ( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2NxN ||
     
    883888      pcCU->getSlice()->getDefaultRefViewIdxAvailableFlag() )
    884889  {
    885     if( bRD )
    886     {
    887       uiAbsPartIdx = 0;
    888     }
    889890    m_pcEntropyCoderIf->codeDBBPFlag( pcCU, uiAbsPartIdx );
    890891  }
Note: See TracChangeset for help on using the changeset viewer.