Changeset 473 in 3DVCSoftware for branches/HTM-DEV-0.3-dev1/source/Lib/TLibCommon
- Timestamp:
- 17 Jun 2013, 15:56:57 (11 years ago)
- Location:
- branches/HTM-DEV-0.3-dev1/source/Lib/TLibCommon
- Files:
-
- 2 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); -
branches/HTM-DEV-0.3-dev1/source/Lib/TLibCommon/TypeDef.h
r467 r473 88 88 // PKU_QC_DEPTH_INTRA_UNI_D0195 89 89 // RWTH_SDC_DLT_B0036 90 #define H_3D_FIX 1 // Temporary for minor fixes 90 91 #endif 91 92 … … 101 102 #define H_3D_VSO_RM_ASSERTIONS 0 // Output VSO assertions 102 103 #define H_3D_VSO_SYNTH_DIST_OUT 0 // Output of synthesized view distortion instead of depth distortion in encoder output 104 #define H_3D_VSO_FIX 0 // This fix should be enabled after verification 103 105 #endif 104 106
Note: See TracChangeset for help on using the changeset viewer.