Ignore:
Timestamp:
24 May 2015, 18:07:56 (10 years ago)
Author:
rwth
Message:
  • revised version of DBBP
Location:
branches/HTM-14.1-update-dev4-RWTH/source/Lib/TLibDecoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-14.1-update-dev4-RWTH/source/Lib/TLibDecoder/TDecCu.cpp

    r1222 r1228  
    302302    if( pcCU->getSlice()->getVPS()->getIvMvPredFlag(pcCU->getSlice()->getLayerId()) )
    303303#else
     304#if NH_3D_DBBP
     305    if( pcCU->getSlice()->getDepthBasedBlkPartFlag() )
     306#else
    304307    if (0)
     308#endif
    305309#endif
    306310#endif
     
    878882   
    879883    pDBBPTmpData->auhInterDir[uiSegment] = pcCU->getInterDir(uiPartAddr);
     884    assert( pDBBPTmpData->auhInterDir[uiSegment] == 1 || pDBBPTmpData->auhInterDir[uiSegment] == 2  );  // only uni-prediction allowed
    880885   
    881886    for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
  • branches/HTM-14.1-update-dev4-RWTH/source/Lib/TLibDecoder/TDecEntropy.cpp

    r1222 r1228  
    181181  {
    182182    decodePUWise( pcCU, uiAbsPartIdx, uiDepth, pcSubCU );
    183    
    184     decodeDBBPFlag( pcCU, uiAbsPartIdx, uiDepth );
    185183  }
    186184}
     
    258256  }
    259257  Int numValidMergeCand = 0;
    260   Bool hasMergedCandList = false;
     258  Bool isMerged = false;
    261259
    262260  pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 );
    263261  pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 );
    264 #if H_3D
     262#if NH_3D
    265263  for ( UInt uiPartIdx = 0, uiSubPartIdx = uiAbsPartIdx; uiPartIdx < uiNumPU; uiPartIdx++, uiSubPartIdx += uiPUOffset )
    266264  {
     
    294292
    295293  ////// Parse CUs extension syntax
    296   decodeSDCFlag ( pcCU, uiAbsPartIdx, uiDepth );
     294#if NH_3D_DBBP
     295  decodeDBBPFlag( pcCU, uiAbsPartIdx, uiDepth );
     296#endif
     297  //decodeSDCFlag ( pcCU, uiAbsPartIdx, uiDepth );
    297298
    298299#if H_3D_ARP
     
    610611}
    611612
    612 #if H_3D
     613#if NH_3D
    613614Void TDecEntropy::decodeMVPIdxPU( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList )
    614615{
  • branches/HTM-14.1-update-dev4-RWTH/source/Lib/TLibDecoder/TDecEntropy.h

    r1222 r1228  
    145145  Void decodeMvdPU        ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList );
    146146  Void decodeMVPIdxPU     ( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList );
    147 #if H_3D
     147#if NH_3D
    148148  Void decodeMvsAMVP      ( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx,
    149149RefPicList eRefList );
Note: See TracChangeset for help on using the changeset viewer.