Changeset 1228 in 3DVCSoftware for branches/HTM-14.1-update-dev4-RWTH/source/Lib/TLibDecoder
- Timestamp:
- 24 May 2015, 18:07:56 (10 years ago)
- 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 302 302 if( pcCU->getSlice()->getVPS()->getIvMvPredFlag(pcCU->getSlice()->getLayerId()) ) 303 303 #else 304 #if NH_3D_DBBP 305 if( pcCU->getSlice()->getDepthBasedBlkPartFlag() ) 306 #else 304 307 if (0) 308 #endif 305 309 #endif 306 310 #endif … … 878 882 879 883 pDBBPTmpData->auhInterDir[uiSegment] = pcCU->getInterDir(uiPartAddr); 884 assert( pDBBPTmpData->auhInterDir[uiSegment] == 1 || pDBBPTmpData->auhInterDir[uiSegment] == 2 ); // only uni-prediction allowed 880 885 881 886 for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ ) -
branches/HTM-14.1-update-dev4-RWTH/source/Lib/TLibDecoder/TDecEntropy.cpp
r1222 r1228 181 181 { 182 182 decodePUWise( pcCU, uiAbsPartIdx, uiDepth, pcSubCU ); 183 184 decodeDBBPFlag( pcCU, uiAbsPartIdx, uiDepth );185 183 } 186 184 } … … 258 256 } 259 257 Int numValidMergeCand = 0; 260 Bool hasMergedCandList= false;258 Bool isMerged = false; 261 259 262 260 pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 ); 263 261 pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 ); 264 #if H_3D262 #if NH_3D 265 263 for ( UInt uiPartIdx = 0, uiSubPartIdx = uiAbsPartIdx; uiPartIdx < uiNumPU; uiPartIdx++, uiSubPartIdx += uiPUOffset ) 266 264 { … … 294 292 295 293 ////// 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 ); 297 298 298 299 #if H_3D_ARP … … 610 611 } 611 612 612 #if H_3D613 #if NH_3D 613 614 Void TDecEntropy::decodeMVPIdxPU( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList ) 614 615 { -
branches/HTM-14.1-update-dev4-RWTH/source/Lib/TLibDecoder/TDecEntropy.h
r1222 r1228 145 145 Void decodeMvdPU ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList ); 146 146 Void decodeMVPIdxPU ( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList ); 147 #if H_3D147 #if NH_3D 148 148 Void decodeMvsAMVP ( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, 149 149 RefPicList eRefList );
Note: See TracChangeset for help on using the changeset viewer.