Changeset 1336 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon
- Timestamp:
- 22 Jul 2015, 02:46:03 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibCommon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r1325 r1336 1428 1428 /** Function for applying picture marking based on the Reference Picture Set in pReferencePictureSet. 1429 1429 */ 1430 #if ALLOW_RECOVERY_POINT_AS_RAP1431 1430 Int TComSlice::checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess, Bool bUseRecoveryPoint) 1432 #else 1433 Int TComSlice::checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess) 1434 #endif 1435 { 1436 #if ALLOW_RECOVERY_POINT_AS_RAP 1431 { 1437 1432 Int atLeastOneUnabledByRecoveryPoint = 0; 1438 1433 Int atLeastOneFlushedByPreviousIDR = 0; 1439 #endif1440 1434 TComPic* rpcPic; 1441 1435 Int i, isAvailable; … … 1458 1452 if(rpcPic->getIsLongTerm() && (rpcPic->getPicSym()->getSlice(0)->getPOC()) == pReferencePictureSet->getPOC(i) && rpcPic->getSlice(0)->isReferenced()) 1459 1453 { 1460 #if ALLOW_RECOVERY_POINT_AS_RAP1461 1454 if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess) 1462 1455 { … … 1467 1460 isAvailable = 1; 1468 1461 } 1469 #else1470 isAvailable = 1;1471 #endif1472 1462 } 1473 1463 } … … 1479 1469 if(rpcPic->getIsLongTerm() && curPoc == refPoc && rpcPic->getSlice(0)->isReferenced()) 1480 1470 { 1481 #if ALLOW_RECOVERY_POINT_AS_RAP1482 1471 if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess) 1483 1472 { … … 1488 1477 isAvailable = 1; 1489 1478 } 1490 #else1491 isAvailable = 1;1492 #endif1493 1479 } 1494 1480 } … … 1513 1499 if (rpcPic->getSlice(0)->isReferenced() && curPoc == refPoc) 1514 1500 { 1515 #if ALLOW_RECOVERY_POINT_AS_RAP1516 1501 if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess) 1517 1502 { … … 1524 1509 break; 1525 1510 } 1526 #else1527 isAvailable = 1;1528 rpcPic->setIsLongTerm(1);1529 break;1530 #endif1531 1511 } 1532 1512 } … … 1556 1536 } 1557 1537 } 1558 #if ALLOW_RECOVERY_POINT_AS_RAP1559 1538 else if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess) 1560 1539 { … … 1565 1544 atLeastOneFlushedByPreviousIDR = 1; 1566 1545 } 1567 #endif1568 1546 } 1569 1547 } … … 1581 1559 if(!rpcPic->getIsLongTerm() && rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getPOC() + pReferencePictureSet->getDeltaPOC(i) && rpcPic->getSlice(0)->isReferenced()) 1582 1560 { 1583 #if ALLOW_RECOVERY_POINT_AS_RAP1584 1561 if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess) 1585 1562 { … … 1590 1567 isAvailable = 1; 1591 1568 } 1592 #else1593 isAvailable = 1;1594 #endif1595 1569 } 1596 1570 } … … 1621 1595 } 1622 1596 } 1623 #if ALLOW_RECOVERY_POINT_AS_RAP1624 1597 #if UNAVAILABLE_PIC_BUGFIX 1625 1598 if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess) … … 1634 1607 atLeastOneFlushedByPreviousIDR = 1; 1635 1608 } 1636 #endif 1637 } 1638 } 1639 1640 #if ALLOW_RECOVERY_POINT_AS_RAP 1609 } 1610 } 1611 1641 1612 if(atLeastOneUnabledByRecoveryPoint || atLeastOneFlushedByPreviousIDR) 1642 1613 { 1643 1614 return -1; 1644 1615 } 1645 #endif1646 1616 if(atLeastOneLost) 1647 1617 { … … 1660 1630 /** Function for constructing an explicit Reference Picture Set out of the available pictures in a referenced Reference Picture Set 1661 1631 */ 1662 #if ALLOW_RECOVERY_POINT_AS_RAP1663 1632 Void TComSlice::createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool isRAP, Int pocRandomAccess, Bool bUseRecoveryPoint, const Bool bEfficientFieldIRAPEnabled) 1664 #else1665 Void TComSlice::createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool isRAP, const Bool bEfficientFieldIRAPEnabled)1666 #endif1667 1633 { 1668 1634 TComPic* rpcPic; -
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r1335 r1336 2307 2307 Bool isTemporalLayerSwitchingPoint( TComList<TComPic*>& rcListPic ); 2308 2308 Bool isStepwiseTemporalLayerSwitchingPointCandidate( TComList<TComPic*>& rcListPic ); 2309 #if ALLOW_RECOVERY_POINT_AS_RAP2310 2309 Int checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess = 0, Bool bUseRecoveryPoint = false); 2311 2310 Void createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool isRAP, Int pocRandomAccess, Bool bUseRecoveryPoint, const Bool bEfficientFieldIRAPEnabled); 2312 #else2313 Int checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess = 0);2314 Void createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, const TComReferencePictureSet *pReferencePictureSet, Bool isRAP, const Bool bEfficientFieldIRAPEnabled);2315 #endif2316 2311 Void setMaxNumMergeCand(UInt val ) { m_maxNumMergeCand = val; } 2317 2312 UInt getMaxNumMergeCand() const { return m_maxNumMergeCand; } -
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r1335 r1336 162 162 // ==================================================================================================================== 163 163 164 #define ALLOW_RECOVERY_POINT_AS_RAP 1165 164 #define AMP_SAD 1 ///< dedicated SAD functions for AMP 166 165 #define BUGFIX_INTRAPERIOD 1
Note: See TracChangeset for help on using the changeset viewer.