Changeset 1053 in SHVCSoftware for branches/SHM-dev/source
- Timestamp:
- 4 Mar 2015, 01:11:53 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r1051 r1053 653 653 #if Q0078_ADD_LAYER_SETS 654 654 UInt m_vpsNumLayerSetsMinus1; 655 Bool m_layerIdIncludedFlag[MAX_VPS_LAYER_SETS_PLUS1 + MAX_NUM_ADD_LAYER_SETS][MAX_ VPS_LAYER_IDX_PLUS1];655 Bool m_layerIdIncludedFlag[MAX_VPS_LAYER_SETS_PLUS1 + MAX_NUM_ADD_LAYER_SETS][MAX_NUM_LAYER_IDS]; 656 656 #else 657 657 Bool m_layerIdIncludedFlag[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_IDX_PLUS1]; … … 676 676 // Below are derived variables 677 677 UInt m_numScalabilityTypes; 678 UInt m_layerIdxInVps[MAX_ VPS_LAYER_IDX_PLUS1]; // Maps layer_id_in_nuh with the layer ID in the VPS678 UInt m_layerIdxInVps[MAX_NUM_LAYER_IDS]; // Maps layer_id_in_nuh with the layer ID in the VPS 679 679 #endif 680 680 #if BITRATE_PICRATE_SIGNALLING … … 846 846 UInt m_numPredictedLayers[MAX_NUM_LAYER_IDS]; 847 847 Int m_numIndependentLayers; 848 Int m_numLayersInTreePartition[MAX_ NUM_LAYER_IDS];849 UInt m_treePartitionLayerIdList[MAX_ NUM_LAYER_IDS][MAX_NUM_LAYER_IDS];848 Int m_numLayersInTreePartition[MAX_LAYERS]; 849 UInt m_treePartitionLayerIdList[MAX_LAYERS][MAX_LAYERS]; 850 850 #endif 851 851 #if SPS_DPB_PARAMS … … 1092 1092 Void setLayerIdInNuh(Int layerIdx, UInt x) { m_layerIdInNuh[layerIdx] = x; } 1093 1093 1094 UInt getDimensionId(Int l yrId, Int id) { return m_dimensionId[lyrId][id]; }1095 Void setDimensionId(Int l yrId, Int id, UInt x) { m_dimensionId[lyrId][id] = x; }1094 UInt getDimensionId(Int layerIdx, Int id) { return m_dimensionId[layerIdx][id]; } 1095 Void setDimensionId(Int layerIdx, Int id, UInt x) { m_dimensionId[layerIdx][id] = x; } 1096 1096 1097 1097 UInt getNumScalabilityTypes() { return m_numScalabilityTypes; } … … 1129 1129 Void setOutputLayerSetIdx(Int idx, UInt x) { m_outputLayerSetIdx[idx] = x; } 1130 1130 1131 Bool getOutputLayerFlag(Int layerSet, Int layerId ) { return m_outputLayerFlag[layerSet][layerId]; }1132 Void setOutputLayerFlag(Int layerSet, Int layerId , Bool x) { m_outputLayerFlag[layerSet][layerId] = x; }1131 Bool getOutputLayerFlag(Int layerSet, Int layerIdx) { return m_outputLayerFlag[layerSet][layerIdx]; } 1132 Void setOutputLayerFlag(Int layerSet, Int layerIdx, Bool x) { m_outputLayerFlag[layerSet][layerIdx] = x; } 1133 1133 #endif 1134 1134 #if VPS_EXTN_DIRECT_REF_LAYERS
Note: See TracChangeset for help on using the changeset viewer.