Changeset 486 in 3DVCSoftware for branches/HTM-DEV-0.3-dev2/source/Lib/TLibDecoder
- Timestamp:
- 20 Jun 2013, 13:04:57 (11 years ago)
- Location:
- branches/HTM-DEV-0.3-dev2/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev2/source/Lib/TLibDecoder/TDecCAVLC.cpp
r479 r486 954 954 { 955 955 #if H_3D 956 #if H_3D_ IV_MERGE956 #if H_3D_GEN 957 957 for( Int layer = 0; layer <= pcVPS->getMaxLayers() - 1; layer++ ) 958 958 { … … 961 961 if ( !( pcVPS->getDepthId( layer ) == 1 ) ) 962 962 { 963 READ_FLAG( uiCode, "ivMvPredFlag[i]"); pcVPS->setIvMvPredFlag( layer, uiCode == 1 ? true : false ); 963 #if H_3D_IV_MERGE 964 READ_FLAG( uiCode, "iv_mv_pred_flag[i]"); pcVPS->setIvMvPredFlag ( layer, uiCode == 1 ? true : false ); 965 #endif 966 #if H_3D_NBDV_REF 967 READ_FLAG( uiCode, "depth_refinement_flag[i]"); pcVPS->setDepthRefinementFlag ( layer, uiCode == 1 ? true : false ); 968 #endif 969 #if H_3D_VSP 970 READ_FLAG( uiCode, "view_synthesis_pred_flag[i]"); pcVPS->setViewSynthesisPredFlag( layer, uiCode == 1 ? true : false ); 971 #endif 964 972 } 965 973 } -
branches/HTM-DEV-0.3-dev2/source/Lib/TLibDecoder/TDecCu.cpp
r478 r486 292 292 m_ppcCU[uiDepth]->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth ); 293 293 #if H_3D_NBDV_REF 294 if(pcCU->getSlice()->get SPS()->getUseDVPRefine()) //Notes from QC: please check the condition for DoNBDV. Remove this comment once it is done.294 if(pcCU->getSlice()->getVPS()->getDepthRefinementFlag( pcCU->getSlice()->getLayerIdInVps() )) //Notes from QC: please check the condition for DoNBDV. Remove this comment once it is done. 295 295 DvInfo.bDV = m_ppcCU[uiDepth]->getDisMvpCandNBDV(&DvInfo, true); 296 296 else -
branches/HTM-DEV-0.3-dev2/source/Lib/TLibDecoder/TDecGop.cpp
r479 r486 159 159 } 160 160 #endif 161 #if H_3D_GEN 162 pcSlice->setDepthToDisparityLUTs(); 163 #endif 161 164 m_pcSbacDecoders[0].load(m_pcSbacDecoder); 162 165 m_pcSliceDecoder->decompressSlice( ppcSubstreams, rpcPic, m_pcSbacDecoder, m_pcSbacDecoders);
Note: See TracChangeset for help on using the changeset viewer.