Changeset 820 in 3DVCSoftware for branches/HTM-9.3-dev1-RWTH/source/Lib/TLibEncoder
- Timestamp:
- 5 Feb 2014, 09:54:12 (11 years ago)
- Location:
- branches/HTM-9.3-dev1-RWTH/source/Lib/TLibEncoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-9.3-dev1-RWTH/source/Lib/TLibEncoder/TEncCu.cpp
r819 r820 2363 2363 { 2364 2364 UChar ucSegment = (UChar)pMask[x]; 2365 assert( ucSegment < 2 );2365 AOF( ucSegment < 2 ); 2366 2366 2367 2367 piDst[x] = (ucSegment==uiValidSegment)?piSrc[x]:DBBP_INVALID_SHORT; … … 2387 2387 { 2388 2388 UChar ucSegment = (UChar)pMask[x*2]; 2389 assert( ucSegment < 2 );2389 AOF( ucSegment < 2 ); 2390 2390 2391 2391 piDstU[x] = (ucSegment==uiValidSegment)?piSrcU[x]:DBBP_INVALID_SHORT; … … 2405 2405 AOF( !rpcTempCU->getSlice()->getIsDepth() ); 2406 2406 2407 2408 2407 UChar uhDepth = rpcTempCU->getDepth( 0 ); 2409 2408 … … 2425 2424 rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uhDepth ); 2426 2425 2427 // get coded and reconstructed depth view2426 // fetch virtual depth block 2428 2427 UInt uiDepthStride = 0; 2429 2428 Pel* pDepthPels = rpcTempCU->getVirtualDepthBlock(0, uiWidth, uiHeight, uiDepthStride); … … 2486 2485 } 2487 2486 2487 // store final motion/disparity information in each PU using derived partitioning 2488 2488 rpcTempCU->setDepthSubParts( uhDepth, 0 ); 2489 2489 rpcTempCU->setPartSizeSubParts ( eVirtualPartSize, 0, uhDepth ); -
branches/HTM-9.3-dev1-RWTH/source/Lib/TLibEncoder/TEncEntropy.cpp
r816 r820 245 245 if( pcCU->getDBBPFlag(uiAbsPartIdx) ) 246 246 { 247 AOF( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) ); 248 247 249 // temporarily change partition size for DBBP blocks 248 250 pcCU->setPartSizeSubParts(RWTH_DBBP_PACK_MODE, uiAbsPartIdx, uiDepth); -
branches/HTM-9.3-dev1-RWTH/source/Lib/TLibEncoder/TEncSbac.cpp
r816 r820 1240 1240 m_pcBinIf->encodeBin( uiInterDir == 2 ? 1 : 0, *( pCtx + uiCtx ) ); 1241 1241 } 1242 #if H_3D_DBBP1243 else1244 {1245 // only uni-prediction is allowed for DBBP1246 AOF( uiInterDir == 0 || uiInterDir == 1 );1247 }1248 #endif1249 1242 if (uiInterDir < 2) 1250 1243 { -
branches/HTM-9.3-dev1-RWTH/source/Lib/TLibEncoder/TEncSearch.cpp
r819 r820 4657 4657 } 4658 4658 4659 // update thesevalues to virtual partition size4659 // update values to virtual partition size 4660 4660 pcCU->getPartIndexAndSize( uiPartIdx, uiPartAddr, iRoiWidth, iRoiHeight ); 4661 4661 } … … 4667 4667 if( pcCU->getDBBPFlag(0) ) 4668 4668 { 4669 // res et to 2Nx2N for motion search4669 // restore 2Nx2N partitioning for motion estimation 4670 4670 uiPartIdx = 0; 4671 4671 AOF( pcCU->getPartitionSize(0) == pDBBPTmpData->eVirtualPartSize );
Note: See TracChangeset for help on using the changeset viewer.