Changeset 1380 in 3DVCSoftware for branches/HTM-15.2-dev/source/App
- Timestamp:
- 11 Nov 2015, 20:47:01 (9 years ago)
- Location:
- branches/HTM-15.2-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-15.2-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1374 r1380 806 806 #endif 807 807 #if NH_MV 808 ("NumberOfLayers", m_numberOfLayers , 1, "Number of layers")809 #if !NH_3D 810 ("ScalabilityMask", m_scalabilityMask , 2 , "Scalability Mask: 2: Multiview, 8: Auxiliary, 10: Multiview + Auxiliary")811 #else 812 ("ScalabilityMask", m_scalabilityMask , 3 , "Scalability Mask, 1: Texture 3: Texture + Depth ")808 ("NumberOfLayers", m_numberOfLayers , 1, "Number of layers") 809 #if !NH_3D 810 ("ScalabilityMask", m_scalabilityMask , 2 , "Scalability Mask: 2: Multiview, 8: Auxiliary, 10: Multiview + Auxiliary") 811 #else 812 ("ScalabilityMask", m_scalabilityMask , 3 , "Scalability Mask, 1: Texture 3: Texture + Depth ") 813 813 #endif 814 ("DimensionIdLen", m_dimensionIdLen , cfg_dimensionLength , "Number of bits used to store dimensions Id")814 ("DimensionIdLen", m_dimensionIdLen , cfg_dimensionLength , "Number of bits used to store dimensions Id") 815 815 ("ViewOrderIndex", m_viewOrderIndex , IntAry1d(1,0), "View Order Index per layer") 816 816 ("ViewId", m_viewId , IntAry1d(1,0), "View Id per View Order Index") … … 821 821 ("TargetEncLayerIdList", m_targetEncLayerIdList , IntAry1d(0,0), "LayerIds in Nuh to be encoded") 822 822 ("LayerIdInNuh", m_layerIdInNuh , IntAry1d(1,0), "LayerId in Nuh") 823 ("SplittingFlag", m_splittingFlag , false ,"Splitting Flag")823 ("SplittingFlag", m_splittingFlag , false, "Splitting Flag") 824 824 825 825 // Layer Sets + Output Layer Sets + Profile Tier Level 826 ("VpsNumLayerSets" , m_vpsNumLayerSets , 1 ,"Number of layer sets")827 ("LayerIdsInSet_%d" , m_layerId sInSets , IntAry1d(1,0) , MAX_VPS_OP_SETS_PLUS1 , "LayerIds of Layer set")828 ("NumAddLayerSets" , m_numAddLayerSets , 0 ,"NumAddLayerSets ")826 ("VpsNumLayerSets" , m_vpsNumLayerSets , 1 , "Number of layer sets") 827 ("LayerIdsInSet_%d" , m_layerIdxInVpsInSets , IntAry1d(1,0) , MAX_VPS_OP_SETS_PLUS1 , "Layer indices in VPS of layers in layer set") 828 ("NumAddLayerSets" , m_numAddLayerSets , 0 , "NumAddLayerSets ") 829 829 ("HighestLayerIdxPlus1_%d" , m_highestLayerIdxPlus1 , IntAry1d(0,0) , MAX_VPS_NUM_ADD_LAYER_SETS , "HighestLayerIdxPlus1") 830 ("DefaultTargetOutputLayerIdc" , m_defaultOutputLayerIdc , 0,"Specifies output layers of layer sets, 0: output all layers, 1: output highest layer, 2: specified by LayerIdsInDefOutputLayerSet")830 ("DefaultTargetOutputLayerIdc" , m_defaultOutputLayerIdc , 0 , "Specifies output layers of layer sets, 0: output all layers, 1: output highest layer, 2: specified by LayerIdsInDefOutputLayerSet") 831 831 ("OutputLayerSetIdx" , m_outputLayerSetIdx , IntAry1d(0,0) , "Indices of layer sets used as additional output layer sets") 832 832 ("LayerIdsInAddOutputLayerSet_%d", m_layerIdsInAddOutputLayerSet , IntAry1d(0,0) , MAX_VPS_ADD_OUTPUT_LAYER_SETS, "Indices in VPS of output layers in additional output layer set") … … 2366 2366 if (lsIdx == 0) 2367 2367 { 2368 xConfirmPara( m_layerId sInSets[lsIdx].size() != 1 || m_layerIdsInSets[lsIdx][0] != 0 , "0-th layer shall only include layer 0. ");2369 } 2370 for ( Int i = 0; i < m_layerId sInSets[lsIdx].size(); i++ )2371 { 2372 xConfirmPara( m_layerId sInSets[lsIdx][i] < 0 || m_layerIdsInSets[lsIdx][i] >= MAX_NUM_LAYER_IDS, "LayerIdsInSet must be greater than 0 and less than MAX_NUM_LAYER_IDS" );2368 xConfirmPara( m_layerIdxInVpsInSets[lsIdx].size() != 1 || m_layerIdxInVpsInSets[lsIdx][0] != 0 , "0-th layer shall only include layer 0. "); 2369 } 2370 for ( Int i = 0; i < m_layerIdxInVpsInSets[lsIdx].size(); i++ ) 2371 { 2372 xConfirmPara( m_layerIdxInVpsInSets[lsIdx][i] < 0 || m_layerIdxInVpsInSets[lsIdx][i] >= MAX_NUM_LAYER_IDS, "LayerIdsInSet must be greater than 0 and less than MAX_NUM_LAYER_IDS" ); 2373 2373 } 2374 2374 } … … 2403 2403 { 2404 2404 Bool inLayerSetFlag = false; 2405 for (Int j = 0; j < m_layerId sInSets[ lsIdx].size(); j++ )2405 for (Int j = 0; j < m_layerIdxInVpsInSets[ lsIdx].size(); j++ ) 2406 2406 { 2407 if ( m_layerId sInSets[ lsIdx ][ j ] == m_layerIdsInDefOutputLayerSet[ lsIdx ][ i ] )2407 if ( m_layerIdxInVpsInSets[ lsIdx ][ j ] == m_layerIdsInDefOutputLayerSet[ lsIdx ][ i ] ) 2408 2408 { 2409 2409 inLayerSetFlag = true; -
branches/HTM-15.2-dev/source/App/TAppEncoder/TAppEncCfg.h
r1374 r1380 91 91 // layer sets 92 92 Int m_vpsNumLayerSets; ///< Number of layer sets 93 IntAry2d m_layerId sInSets; ///< LayerIds in vps of layer set93 IntAry2d m_layerIdxInVpsInSets; ///< LayerIds in vps of layer set 94 94 Int m_numAddLayerSets; ///< Number of additional layer sets 95 95 IntAry2d m_highestLayerIdxPlus1; ///< HighestLayerIdxPlus1 for each additional layer set and each independent layer (value with index 0 will be ignored) -
branches/HTM-15.2-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1374 r1380 188 188 for (Int d = 0; d < 2; d++) 189 189 { 190 m_sps3dExtension.setIv MvPredFlag ( d, m_ivMvPredFlag[d] );191 m_sps3dExtension.setIvMvScal ingFlag ( d, m_ivMvScalingFlag[d] );190 m_sps3dExtension.setIvDiMcEnabledFlag ( d, m_ivMvPredFlag[d] ); 191 m_sps3dExtension.setIvMvScalEnabledFlag ( d, m_ivMvScalingFlag[d] ); 192 192 if (d == 0 ) 193 193 { 194 m_sps3dExtension.setLog2 SubPbSizeMinus3 ( d, m_log2SubPbSizeMinus3 );195 m_sps3dExtension.setIvResPred Flag ( d, m_ivResPredFlag );196 m_sps3dExtension.setDepthRef inementFlag ( d, m_depthRefinementFlag );197 m_sps3dExtension.setV iewSynthesisPredFlag ( d, m_viewSynthesisPredFlag );198 m_sps3dExtension.setD epthBasedBlkPartFlag ( d, m_depthBasedBlkPartFlag );194 m_sps3dExtension.setLog2IvmcSubPbSizeMinus3 ( d, m_log2SubPbSizeMinus3 ); 195 m_sps3dExtension.setIvResPredEnabledFlag ( d, m_ivResPredFlag ); 196 m_sps3dExtension.setDepthRefEnabledFlag ( d, m_depthRefinementFlag ); 197 m_sps3dExtension.setVspMcEnabledFlag ( d, m_viewSynthesisPredFlag ); 198 m_sps3dExtension.setDbbpEnabledFlag ( d, m_depthBasedBlkPartFlag ); 199 199 } 200 200 else 201 201 { 202 m_sps3dExtension.set MpiFlag ( d, m_mpiFlag );203 m_sps3dExtension.setLog2 MpiSubPbSizeMinus3( d, m_log2MpiSubPbSizeMinus3);204 m_sps3dExtension.setIntraContour Flag ( d, m_intraContourFlag );205 m_sps3dExtension.setIntra SdcWedgeFlag ( d, m_intraSdcFlag || m_intraWedgeFlag );206 m_sps3dExtension.set QtPredFlag ( d, m_qtPredFlag );207 m_sps3dExtension.setInter SdcFlag ( d, m_interSdcFlag );208 m_sps3dExtension.set DepthIntraSkipFlag ( d, m_depthIntraSkipFlag );202 m_sps3dExtension.setTexMcEnabledFlag ( d, m_mpiFlag ); 203 m_sps3dExtension.setLog2TexmcSubPbSizeMinus3( d, m_log2MpiSubPbSizeMinus3); 204 m_sps3dExtension.setIntraContourEnabledFlag ( d, m_intraContourFlag ); 205 m_sps3dExtension.setIntraDcOnlyWedgeEnabledFlag ( d, m_intraSdcFlag || m_intraWedgeFlag ); 206 m_sps3dExtension.setCqtCuPartPredEnabledFlag ( d, m_qtPredFlag ); 207 m_sps3dExtension.setInterDcOnlyEnabledFlag ( d, m_interSdcFlag ); 208 m_sps3dExtension.setSkipIntraEnabledFlag ( d, m_depthIntraSkipFlag ); 209 209 } 210 210 } … … 2071 2071 vps.setLayerIdIncludedFlag( false, lsIdx, layerId ); 2072 2072 } 2073 for ( Int i = 0; i < m_layerId sInSets[lsIdx].size(); i++)2073 for ( Int i = 0; i < m_layerIdxInVpsInSets[lsIdx].size(); i++) 2074 2074 { 2075 vps.setLayerIdIncludedFlag( true, lsIdx, vps.getLayerIdInNuh( m_layerId sInSets[lsIdx][i] ) );2075 vps.setLayerIdIncludedFlag( true, lsIdx, vps.getLayerIdInNuh( m_layerIdxInVpsInSets[lsIdx][i] ) ); 2076 2076 } 2077 2077 }
Note: See TracChangeset for help on using the changeset viewer.