Changeset 1047 in SHVCSoftware
- Timestamp:
- 3 Mar 2015, 02:47:33 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1043 r1047 1070 1070 #if SVC_EXTENSION 1071 1071 assert( pcVPS->getNumHrdParameters() < MAX_VPS_LAYER_SETS_PLUS1 ); 1072 assert( pcVPS->getMaxLayerId() < MAX_VPS_LAYER_ID _PLUS1 );1072 assert( pcVPS->getMaxLayerId() < MAX_VPS_LAYER_IDX_PLUS1 ); 1073 1073 READ_CODE( 6, uiCode, "vps_max_layer_id" ); pcVPS->setMaxLayerId( uiCode ); 1074 1074 #if Q0078_ADD_LAYER_SETS … … 1660 1660 Int numRefLayerPics = 0; 1661 1661 Int i = 0; 1662 Int refLayerPicIdc [MAX_VPS_LAYER_ID _PLUS1];1662 Int refLayerPicIdc [MAX_VPS_LAYER_IDX_PLUS1]; 1663 1663 for(i = 0, numRefLayerPics = 0; i < pcSlice->getNumILRRefIdx(); i++ ) 1664 1664 { -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1043 r1047 1174 1174 1175 1175 #if P0297_VPS_POC_LSB_ALIGNED_FLAG 1176 UInt affectedLayerList[MAX_ NUM_LAYER_IDS];1176 UInt affectedLayerList[MAX_LAYERS]; 1177 1177 Int numAffectedLayers; 1178 1178 … … 2870 2870 decTop->setNumMotionPredRefLayers(0); 2871 2871 decTop->setNumDirectRefLayers(0); 2872 for(Int i = 0; i < MAX_VPS_LAYER_ID _PLUS1; i++)2872 for(Int i = 0; i < MAX_VPS_LAYER_IDX_PLUS1; i++) 2873 2873 { 2874 2874 decTop->setSamplePredEnabledFlag(i, false); … … 3298 3298 } 3299 3299 3300 for (UInt layer = 0; layer <= MAX_VPS_LAYER_ID _PLUS1 - 1; layer++)3300 for (UInt layer = 0; layer <= MAX_VPS_LAYER_IDX_PLUS1 - 1; layer++) 3301 3301 { 3302 3302 m_ppcTDecTop[layer]->m_smallestLayerId = smallestLayerId; -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h
r1043 r1047 149 149 #if VPS_EXTN_DIRECT_REF_LAYERS 150 150 Int m_numDirectRefLayers; 151 Int m_refLayerId[MAX_VPS_LAYER_ID _PLUS1];151 Int m_refLayerId[MAX_VPS_LAYER_IDX_PLUS1]; 152 152 Int m_numSamplePredRefLayers; 153 Int m_samplePredRefLayerId[MAX_VPS_LAYER_ID _PLUS1];153 Int m_samplePredRefLayerId[MAX_VPS_LAYER_IDX_PLUS1]; 154 154 Int m_numMotionPredRefLayers; 155 Int m_motionPredRefLayerId[MAX_VPS_LAYER_ID _PLUS1];156 Bool m_samplePredEnabledFlag[MAX_VPS_LAYER_ID _PLUS1];157 Bool m_motionPredEnabledFlag[MAX_VPS_LAYER_ID _PLUS1];155 Int m_motionPredRefLayerId[MAX_VPS_LAYER_IDX_PLUS1]; 156 Bool m_samplePredEnabledFlag[MAX_VPS_LAYER_IDX_PLUS1]; 157 Bool m_motionPredEnabledFlag[MAX_VPS_LAYER_IDX_PLUS1]; 158 158 #endif 159 159 TComPic* m_cIlpPic[MAX_NUM_REF]; ///< Inter layer Prediction picture = upsampled picture
Note: See TracChangeset for help on using the changeset viewer.