- Timestamp:
- 8 Oct 2013, 08:10:53 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncTop.cpp
r409 r412 1576 1576 case NAL_UNIT_CODED_SLICE_TRAIL_R: 1577 1577 case NAL_UNIT_CODED_SLICE_TRAIL_N: 1578 case NAL_UNIT_CODED_SLICE_T LA_R:1578 case NAL_UNIT_CODED_SLICE_TSA_R: 1579 1579 case NAL_UNIT_CODED_SLICE_TSA_N: 1580 1580 case NAL_UNIT_CODED_SLICE_STSA_R: -
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()); -
branches/SHM-3.1-dev/source/Lib/TLibDecoder/NALread.cpp
r313 r412 126 126 else 127 127 { 128 assert( nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_T LA_R128 assert( nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_TSA_R 129 129 && nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_TSA_N 130 130 && nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_STSA_R -
branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecTop.cpp
r411 r412 1469 1469 case NAL_UNIT_CODED_SLICE_TRAIL_R: 1470 1470 case NAL_UNIT_CODED_SLICE_TRAIL_N: 1471 case NAL_UNIT_CODED_SLICE_T LA_R:1471 case NAL_UNIT_CODED_SLICE_TSA_R: 1472 1472 case NAL_UNIT_CODED_SLICE_TSA_N: 1473 1473 case NAL_UNIT_CODED_SLICE_STSA_R: -
branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r411 r412 816 816 else 817 817 { 818 pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_T LA_R);818 pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TSA_R); 819 819 } 820 820 } … … 2567 2567 case NAL_UNIT_CODED_SLICE_TRAIL_R: return "TRAIL_R"; 2568 2568 case NAL_UNIT_CODED_SLICE_TRAIL_N: return "TRAIL_N"; 2569 case NAL_UNIT_CODED_SLICE_T LA_R: return "TLA_R";2569 case NAL_UNIT_CODED_SLICE_TSA_R: return "TSA_R"; 2570 2570 case NAL_UNIT_CODED_SLICE_TSA_N: return "TSA_N"; 2571 2571 case NAL_UNIT_CODED_SLICE_STSA_R: return "STSA_R";
Note: See TracChangeset for help on using the changeset viewer.