Changeset 1503 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 11 Dec 2015, 19:35:23 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1502 r1503 275 275 } 276 276 277 rpcPic->create( vps,sps, pps, true, m_layerId);277 rpcPic->create( sps, pps, true, m_layerId); 278 278 #else //SVC_EXTENSION 279 279 rpcPic->create ( sps, pps, true); … … 324 324 } 325 325 326 rpcPic->create( vps,sps, pps, true, m_layerId);326 rpcPic->create( sps, pps, true, m_layerId); 327 327 #else //SVC_EXTENSION 328 328 rpcPic->create ( sps, pps, true); … … 520 520 UInt refLayerId = 0; 521 521 522 pBLPic->create( * vps, *sps, *pps, true, refLayerId);522 pBLPic->create( *sps, *pps, true, refLayerId); 523 523 524 524 // it is needed where the VPS is accessed through the slice 525 525 pBLPic->getSlice(0)->setVPS( vps ); 526 pBLPic->getPicSym()->inferSpsForNonHEVCBL( );526 pBLPic->getPicSym()->inferSpsForNonHEVCBL(vps); 527 527 pBLPic->getSlice(0)->setSPS( &pBLPic->getPicSym()->getSPS() ); 528 528 } … … 2273 2273 m_cIlpPic[j] = new TComPic; 2274 2274 2275 m_cIlpPic[j]->create(* vps, *sps, *slice->getPPS(), true, m_layerId);2275 m_cIlpPic[j]->create(*sps, *slice->getPPS(), true, m_layerId); 2276 2276 2277 2277 for (Int i=0; i<m_cIlpPic[j]->getPicSym()->getNumberOfCtusInFrame(); i++)
Note: See TracChangeset for help on using the changeset viewer.