Changeset 473 in 3DVCSoftware for branches/HTM-DEV-0.3-dev1/source/Lib/TLibCommon/TComSlice.cpp
- Timestamp:
- 17 Jun 2013, 15:56:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev1/source/Lib/TLibCommon/TComSlice.cpp
r467 r473 1521 1521 1522 1522 #if H_3D_DIM_DLT 1523 Void TComVPS::setDepthLUTs(Int layerIdInVps, Int* idx 2DepthValue, Int iNumDepthValues)1524 { 1525 if( idx 2DepthValue == NULL || iNumDepthValues == 0 ) // default mapping only1523 Void TComVPS::setDepthLUTs(Int layerIdInVps, Int* idxToDepthValueTable, Int iNumDepthValues) 1524 { 1525 if( idxToDepthValueTable == NULL || iNumDepthValues == 0 ) // default mapping only 1526 1526 return; 1527 1527 1528 1528 // copy idx2DepthValue to internal array 1529 memcpy(m_iIdx2DepthValue[layerIdInVps], idx 2DepthValue, iNumDepthValues*sizeof(UInt));1529 memcpy(m_iIdx2DepthValue[layerIdInVps], idxToDepthValueTable, iNumDepthValues*sizeof(UInt)); 1530 1530 1531 1531 UInt uiMaxDepthValue = ((1 << g_bitDepthY)-1);
Note: See TracChangeset for help on using the changeset viewer.