Changeset 1574 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 20 Jun 2016, 19:14:44 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1549 r1574 275 275 } 276 276 277 #if REDUCED_ENCODER_MEMORY 278 rpcPic->create ( sps, pps, false, true, m_layerId); 279 #else 277 280 rpcPic->create( sps, pps, true, m_layerId); 281 #endif 278 282 #else //SVC_EXTENSION 283 #if REDUCED_ENCODER_MEMORY 284 rpcPic->create ( sps, pps, false, true); 285 #else 279 286 rpcPic->create ( sps, pps, true); 287 #endif 280 288 #endif //SVC_EXTENSION 281 289 … … 323 331 xSetRequireResamplingFlag( vps, sps, pps, rpcPic ); 324 332 } 325 333 #if REDUCED_ENCODER_MEMORY 334 rpcPic->create ( sps, pps, false, true, m_layerId); 335 #else 326 336 rpcPic->create( sps, pps, true, m_layerId); 337 #endif 327 338 #else //SVC_EXTENSION 339 #if REDUCED_ENCODER_MEMORY 340 rpcPic->create ( sps, pps, false, true); 341 #else 328 342 rpcPic->create ( sps, pps, true); 343 #endif 329 344 #endif //SVC_EXTENSION 330 345 } … … 522 537 pBLPic->getPicSym()->inferSpsForNonHEVCBL(vps, sps->getMaxCUWidth(), sps->getMaxCUHeight()); 523 538 539 #if REDUCED_ENCODER_MEMORY 540 pBLPic->create( pBLPic->getPicSym()->getSPS(), *pps, true, true, refLayerId); 541 #else 524 542 pBLPic->create( pBLPic->getPicSym()->getSPS(), *pps, true, refLayerId); 543 #endif 525 544 526 545 // it is needed where the VPS is accessed through the slice … … 2278 2297 m_cIlpPic[j] = new TComPic; 2279 2298 2299 #if REDUCED_ENCODER_MEMORY 2300 m_cIlpPic[j]->create(*sps, *pps, true, false, m_layerId); 2301 #else 2280 2302 m_cIlpPic[j]->create(*sps, *pps, true, m_layerId); 2303 #endif 2281 2304 2282 2305 for (Int i=0; i<m_cIlpPic[j]->getPicSym()->getNumberOfCtusInFrame(); i++)
Note: See TracChangeset for help on using the changeset viewer.