Changeset 257 in SHVCSoftware for branches/SHM-2.1-multilayers-dev
- Timestamp:
- 3 Jun 2013, 21:33:24 (12 years ago)
- Location:
- branches/SHM-2.1-multilayers-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-2.1-multilayers-dev/source/Lib/TLibDecoder/TDecTop.cpp
r255 r257 160 160 if (m_cIlpPic[0] == NULL) 161 161 { 162 for (Int j=0; j < 1/*MAX_NUM_REF*/; j++) // to beset to NumDirectRefLayers[LayerIdInVps[nuh_layer_id]]162 for (Int j=0; j < MAX_LAYERS /*MAX_NUM_REF*/; j++) // consider to set to NumDirectRefLayers[LayerIdInVps[nuh_layer_id]] 163 163 { 164 164 … … 1307 1307 #endif 1308 1308 } 1309 1310 // currently only one reference layer is supported1311 assert( vps->getNumDirectRefLayers( m_layerId ) == 1 );1312 #if JCTVC_M0458_INTERLAYER_RPS_SIG1313 assert( vps->getMaxOneActiveRefLayerFlag() == 1 );1314 #endif1315 1309 1316 1310 return (TDecTop *)getLayerDec( vps->getRefLayerId( m_layerId, refLayerIdc ) ); -
branches/SHM-2.1-multilayers-dev/source/Lib/TLibEncoder/TEncTop.cpp
r253 r257 1222 1222 } 1223 1223 1224 // currently only one reference layer is supported1225 assert( m_ppcTEncTop[m_layerId]->getNumDirectRefLayers() == 1 );1226 1227 1224 return (TEncTop *)getLayerEnc( getVPS()->getRefLayerId( m_layerId, refLayerIdc ) ); 1228 1225 } … … 1247 1244 if (m_cIlpPic[0] == NULL) 1248 1245 { 1249 for (Int j=0; j < MAX_LAYERS /*MAX_NUM_REF*/; j++) 1246 for (Int j=0; j < MAX_LAYERS /*MAX_NUM_REF*/; j++) // consider to set to NumDirectRefLayers[LayerIdInVps[nuh_layer_id]] 1250 1247 { 1251 1248 m_cIlpPic[j] = new TComPic;
Note: See TracChangeset for help on using the changeset viewer.