Changeset 486 in 3DVCSoftware for branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder
- Timestamp:
- 20 Jun 2013, 13:04:57 (11 years ago)
- Location:
- branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncCavlc.cpp
r481 r486 750 750 { 751 751 #if H_3D_IV_MERGE 752 WRITE_FLAG( pcVPS->getIvMvPredFlag(layer) ? 1 : 0 , "ivMvPredFlag[i]"); 752 WRITE_FLAG( pcVPS->getIvMvPredFlag (layer) ? 1 : 0 , "iv_mv_pred_flag[i]"); 753 #endif 754 #if H_3D_NBDV_REF 755 WRITE_FLAG( pcVPS->getDepthRefinementFlag (layer) ? 1 : 0 , "depth_refinement_flag[i]"); 756 #endif 757 #if H_3D_VSP 758 WRITE_FLAG( pcVPS->getViewSynthesisPredFlag(layer) ? 1 : 0 , "view_synthesis_pred_flag[i]"); 753 759 #endif 754 760 } -
branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncCu.cpp
r476 r486 473 473 rpcTempCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth ); 474 474 #if H_3D_NBDV_REF 475 if( m_pcSlice->getSPS()->getUseDVPRefine()) //Notes from QC: please check the condition for DoNBDV. Remove this comment once it is done.475 if(rpcTempCU->getSlice()->getVPS()->getDepthRefinementFlag( rpcTempCU->getSlice()->getLayerIdInVps())) 476 476 DvInfo.bDV = rpcTempCU->getDisMvpCandNBDV(&DvInfo, true); 477 477 else -
branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncGOP.cpp
r481 r486 1048 1048 pcPic->setNumDdvCandPics(pcPic->getDisCandRefPictures(iColPoc)); 1049 1049 } 1050 #if H_3D_GEN 1051 pcSlice->setDepthToDisparityLUTs(); 1052 1053 #endif 1050 1054 #endif 1051 1055 while(nextCUAddr<uiRealEndAddress) // determine slice boundaries -
branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncSlice.cpp
r481 r486 544 544 rpcSlice->setSliceSegmentArgument ( m_pcCfg->getSliceSegmentArgument() ); 545 545 #if H_3D_IV_MERGE 546 rpcSlice->setMaxNumMergeCand ( m_pcCfg->getMaxNumMergeCand() + ( rpcSlice->getVPS()->getIvMvPredFlag( rpcSlice->getLayerIdInVps() ) ? 1 : 0 ) );546 rpcSlice->setMaxNumMergeCand ( m_pcCfg->getMaxNumMergeCand() + ( rpcSlice->getVPS()->getIvMvPredFlag( rpcSlice->getLayerIdInVps() ) ? 1 : 0 ) ); 547 547 #else 548 548 rpcSlice->setMaxNumMergeCand ( m_pcCfg->getMaxNumMergeCand() );
Note: See TracChangeset for help on using the changeset viewer.