Changeset 1493 in SHVCSoftware
- Timestamp:
- 3 Dec 2015, 01:26:25 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1492 r1493 611 611 #if ALIGNED_BUMPING 612 612 m_apcSlicePilot->checkLeadingPictureRestrictions(m_cListPic); 613 614 if( m_parseIdc == 1 || m_parseIdc == 3 )615 {616 m_apcSlicePilot->applyReferencePictureSet(m_cListPic, m_apcSlicePilot->getRPS());617 }618 613 #else 619 614 m_apcSlicePilot->applyReferencePictureSet(m_cListPic, m_apcSlicePilot->getRPS()); … … 1254 1249 #endif 1255 1250 1251 //detect lost reference picture and insert copy of earlier frame. 1252 { 1253 Int lostPoc; 1254 while((lostPoc=m_apcSlicePilot->checkThatAllRefPicsAreAvailable(m_cListPic, m_apcSlicePilot->getRPS(), true, m_pocRandomAccess)) > 0) 1255 { 1256 xCreateLostPicture(lostPoc-1); 1257 } 1258 } 1259 1256 1260 if( m_parseIdc == 1 || m_parseIdc == 3) 1257 1261 { … … 1283 1287 } 1284 1288 } 1289 m_apcSlicePilot->applyReferencePictureSet(m_cListPic, m_apcSlicePilot->getRPS()); 1285 1290 } 1286 1291 … … 1346 1351 m_prevPOC = m_apcSlicePilot->getPOC(); 1347 1352 } 1348 #endif //SVC_EXTENSION1349 1353 1350 1354 //detect lost reference picture and insert copy of earlier frame. … … 1356 1360 } 1357 1361 } 1362 #endif //SVC_EXTENSION 1358 1363 1359 1364 if (!m_apcSlicePilot->getDependentSliceSegmentFlag())
Note: See TracChangeset for help on using the changeset viewer.