Changeset 20 in 3DVCSoftware for branches/0.2-HHI/source/Lib/TLibEncoder/TEncTop.cpp
- Timestamp:
- 15 Feb 2012, 18:58:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.2-HHI/source/Lib/TLibEncoder/TEncTop.cpp
r5 r20 92 92 m_cLoopFilter. create( g_uiMaxCUDepth ); 93 93 #if DEPTH_MAP_GENERATION 94 m_cDepthMapGenerator. create( false, getSourceWidth(), getSourceHeight(), g_uiMaxCUDepth, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiBitDepth + g_uiBitIncrement );94 m_cDepthMapGenerator. create( false, getSourceWidth(), getSourceHeight(), g_uiMaxCUDepth, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiBitDepth + g_uiBitIncrement, PDM_SUB_SAMP_EXP_X(m_uiPredDepthMapGeneration), PDM_SUB_SAMP_EXP_Y(m_uiPredDepthMapGeneration) ); 95 95 #endif 96 96 #if HHI_INTER_VIEW_RESIDUAL_PRED … … 304 304 if( bNeedPrdDepthMapBuf && !pcPic->getPredDepthMap() ) 305 305 { 306 pcPic->addPrdDepthMapBuffer( );306 pcPic->addPrdDepthMapBuffer( PDM_SUB_SAMP_EXP_X(m_uiPredDepthMapGeneration), PDM_SUB_SAMP_EXP_Y(m_uiPredDepthMapGeneration) ); 307 307 } 308 308 #endif … … 798 798 pcPic->setQP(max(MIN_QP,min(MAX_QP, m_iQP+ m_aiTLayerQPOffset[m_cSeqIter.getFrameDescriptor().getTEncSeqStructureLayer(m_uiViewId)] + iQpChangeOffset )) ); 799 799 pcPic->setViewIdx( m_uiViewId ); 800 #if SONY_COLPIC_AVAILABILITY 801 pcPic->setViewOrderIdx(m_iViewOrderIdx); 802 #endif 800 803 #if 0 801 804 pcPic->setNumRefs(0, REF_PIC_LIST_0);
Note: See TracChangeset for help on using the changeset viewer.