Changeset 412 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib/TLibCommon
- Timestamp:
- 8 Oct 2013, 08:10:53 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source/Lib/TLibCommon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/Lib/TLibCommon/CommonDef.h
r352 r412 200 200 201 201 NAL_UNIT_CODED_SLICE_TSA_N, // 2 202 NAL_UNIT_CODED_SLICE_T LA_R, // 3202 NAL_UNIT_CODED_SLICE_TSA_R, // 3 203 203 204 204 NAL_UNIT_CODED_SLICE_STSA_N, // 4 -
branches/SHM-3.1-dev/source/Lib/TLibCommon/NAL.h
r313 r412 76 76 return m_nalUnitType == NAL_UNIT_CODED_SLICE_TRAIL_R 77 77 || m_nalUnitType == NAL_UNIT_CODED_SLICE_TRAIL_N 78 || m_nalUnitType == NAL_UNIT_CODED_SLICE_T LA_R78 || m_nalUnitType == NAL_UNIT_CODED_SLICE_TSA_R 79 79 || m_nalUnitType == NAL_UNIT_CODED_SLICE_TSA_N 80 80 || m_nalUnitType == NAL_UNIT_CODED_SLICE_STSA_R -
branches/SHM-3.1-dev/source/Lib/TLibCommon/TComSlice.cpp
r411 r412 1295 1295 assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getUsedByCurr()==0||rpcPic->getTLayer()<=this->getTLayer()); 1296 1296 //check that pictures of higher or equal temporal layer are not in the RPS if the current picture is a TSA picture 1297 if(this->getNalUnitType() == NAL_UNIT_CODED_SLICE_T LA_R || this->getNalUnitType() == NAL_UNIT_CODED_SLICE_TSA_N)1297 if(this->getNalUnitType() == NAL_UNIT_CODED_SLICE_TSA_R || this->getNalUnitType() == NAL_UNIT_CODED_SLICE_TSA_N) 1298 1298 { 1299 1299 assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getTLayer()<this->getTLayer());
Note: See TracChangeset for help on using the changeset viewer.