Ignore:
Timestamp:
11 Jun 2013, 20:35:00 (11 years ago)
Author:
zhang
Message:

Implementation of ARP from QC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev2a/source/Lib/TLibEncoder/TEncEntropy.cpp

    r446 r464  
    157157}
    158158
     159#if H_3D_ARP
     160Void TEncEntropy::encodeARPW( TComDataCU* pcCU, UInt uiAbsPartIdx )
     161{
     162  if( !pcCU->getSlice()->getARPStepNum() || pcCU->isIntra( uiAbsPartIdx ) )
     163  {
     164    return;
     165  }
     166
     167  if ( pcCU->getPartitionSize(uiAbsPartIdx)!=SIZE_2Nx2N )
     168  {
     169    assert(pcCU->getARPW (uiAbsPartIdx) == 0);
     170  }
     171  else
     172  {
     173    m_pcEntropyCoderIf->codeARPW( pcCU, uiAbsPartIdx );
     174  }
     175}
     176#endif
     177
    159178/** encode prediction mode
    160179 * \param pcCU
Note: See TracChangeset for help on using the changeset viewer.