Changeset 21 in 3DVCSoftware for trunk/source/Lib/TLibEncoder
- Timestamp:
- 15 Feb 2012, 19:05:04 (13 years ago)
- Location:
- trunk/source/Lib/TLibEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibEncoder/TEncCfg.h
r5 r21 355 355 #endif 356 356 357 #if SONY_COLPIC_AVAILABILITY 358 Int getViewOrderIdx () { return m_iViewOrderIdx; } 359 #endif 360 357 361 #if HHI_VSO 358 362 //==== VSO ========== -
trunk/source/Lib/TLibEncoder/TEncSlice.cpp
r5 r21 149 149 rpcSlice->initSlice(); 150 150 rpcSlice->setPOC( pcPic->getPOC() ); 151 #if SONY_COLPIC_AVAILABILITY 152 rpcSlice->setViewOrderIdx(m_pcCfg->getViewOrderIdx()); 153 #endif 151 154 152 155 // slice type -
trunk/source/Lib/TLibEncoder/TEncTop.cpp
r5 r21 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.