Changeset 112 in 3DVCSoftware for branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComDataCU.cpp
- Timestamp:
- 30 Aug 2012, 09:18:03 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComDataCU.cpp
r100 r112 152 152 #endif 153 153 #endif 154 #if OL_DEPTHLIMIT 155 //add a variable to store the partition information 156 //a 2D array in part_symbol,uidepth format 157 //initialize m_partInfo to OL_END_CU 158 for (int i=0; i < OL_PART_BUF_SIZE; i++) 159 { 160 for (int j=0; j < 2; j++) 161 m_uiPartInfo[i][j] = OL_END_CU; 162 } 163 #endif 154 164 } 155 165 … … 456 466 Void TComDataCU::initCU( TComPic* pcPic, UInt iCUAddr ) 457 467 { 468 #if OL_DEPTHLIMIT 469 TComDataCU* pcCU = pcPic->getCU(iCUAddr); 470 #endif 458 471 459 472 m_pcPic = pcPic; … … 672 685 m_apcCUColocated[1] = getSlice()->getRefPic( REF_PIC_LIST_1, 0)->getCU( m_uiCUAddr ); 673 686 } 687 #if OL_DEPTHLIMIT 688 setPartDumpFlag (pcCU->getPartDumpFlag()); 689 #endif 674 690 } 675 691 … … 1001 1017 memcpy(m_uiSliceStartCU,pcCU->m_uiSliceStartCU+uiPartOffset,sizeof(UInt)*m_uiNumPartition); 1002 1018 memcpy(m_uiEntropySliceStartCU,pcCU->m_uiEntropySliceStartCU+uiPartOffset,sizeof(UInt)*m_uiNumPartition); 1019 #if OL_DEPTHLIMIT 1020 setPartDumpFlag (pcCU->getPartDumpFlag()); 1021 #endif 1003 1022 } 1004 1023
Note: See TracChangeset for help on using the changeset viewer.