Changeset 858 in SHVCSoftware
- Timestamp:
- 11 Aug 2014, 22:27:04 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r856 r858 1143 1143 if( m_apcSlicePilot->getPocResetIdc() == 3 ) 1144 1144 { 1145 assert( m_apcSlicePilot->getFullPocResetFlag() == false && m_crossLayerPocResetIdc == 11146 || m_apcSlicePilot->getFullPocResetFlag() == true && m_crossLayerPocResetIdc == 2);1145 assert( ( m_apcSlicePilot->getFullPocResetFlag() == false && m_crossLayerPocResetIdc == 1 ) || 1146 ( m_apcSlicePilot->getFullPocResetFlag() == true && m_crossLayerPocResetIdc == 2 ) ); 1147 1147 } 1148 1148 } … … 1733 1733 that is present in the bitstream in the same access unit with a different value of nal_unit_type, 1734 1734 the value of poc_reset_idc shall be equal to 1 or 2 for all pictures in the access unit. */ 1735 if( m_nonBaseIdrPresentFlag && 1736 ( m_nonBaseIdrType == 1 && m_picNonIdrWithRadlPresentFlag 1737 ||m_nonBaseIdrType == 0 && m_picNonIdrNoLpPresentFlag )1738 ) 1735 if( m_nonBaseIdrPresentFlag && ( 1736 ( m_nonBaseIdrType == 1 && m_picNonIdrWithRadlPresentFlag ) || 1737 ( m_nonBaseIdrType == 0 && m_picNonIdrNoLpPresentFlag ) 1738 )) 1739 1739 { 1740 1740 assert( m_apcSlicePilot->getPocResetIdc() == 1 || m_apcSlicePilot->getPocResetIdc() == 2 );
Note: See TracChangeset for help on using the changeset viewer.