Changeset 1251 in 3DVCSoftware
- Timestamp:
- 4 Jun 2015, 11:47:20 (9 years ago)
- Location:
- branches/HTM-14.1-update-dev1-RWTH/source/Lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibCommon/TComSlice.cpp
r1250 r1251 2855 2855 m_bUseDLTFlag [i] = false; 2856 2856 m_bInterViewDltPredEnableFlag [i] = false; 2857 m_bDltBitMapRepFlag [i] = false; 2857 2858 2858 2859 // allocate some memory and initialize with default mapping … … 2860 2861 m_iDepthValue2Idx[i] = std::vector<Int>(m_iNumDepthmapValues[i]); 2861 2862 m_iIdx2DepthValue[i] = std::vector<Int>(m_iNumDepthmapValues[i]); 2863 2864 m_iDepthIdxToLayerId[i] = i; 2862 2865 2863 2866 //default mapping -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibCommon/TComSlice.h
r1219 r1251 1367 1367 1368 1368 Int m_iNumDepthmapValues [ MAX_NUM_LAYERS ]; 1369 std::vector<Int> m_iDepthValue2Idx [ MAX_NUM_LAYERS ];1370 std::vector<Int> m_iIdx2DepthValue [ MAX_NUM_LAYERS ];1369 std::vector<Int> m_iDepthValue2Idx [ MAX_NUM_LAYERS ]; 1370 std::vector<Int> m_iIdx2DepthValue [ MAX_NUM_LAYERS ]; 1371 1371 1372 1372 Int m_iNumDepthViews; … … 1374 1374 1375 1375 // mapping 1376 Int m_iDepthIdxToLayerId [ MAX_NUM_LAYERS ]; 1377 1378 // these are only needed at the encoder to decide on coding 1376 Int m_iDepthIdxToLayerId [ MAX_NUM_LAYERS ]; 1379 1377 1380 1378 public: -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibDecoder/TDecTop.cpp
r1219 r1251 1330 1330 Int layerId = m_parameterSetManager.getFirstVPS()->getLayerIdInNuh(i); 1331 1331 if( m_parameterSetManager.getFirstVPS()->getDepthId(layerId) ) 1332 pps->getDLT()->setDepthIdxToLayerId(j++, i);1332 pps->getDLT()->setDepthIdxToLayerId(j++, layerId); 1333 1333 } 1334 1334 #endif -
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibEncoder/TEncTop.cpp
r1219 r1251 994 994 Int layerId = getVPS()->getLayerIdInNuh(i); 995 995 if( getVPS()->getDepthId(layerId) ) 996 m_cDLT.setDepthIdxToLayerId(j++, i);996 m_cDLT.setDepthIdxToLayerId(j++, layerId); 997 997 } 998 998 m_cPPS.setDLT( m_cDLT );
Note: See TracChangeset for help on using the changeset viewer.