Changeset 412 in SHVCSoftware for branches


Ignore:
Timestamp:
8 Oct 2013, 08:10:53 (11 years ago)
Author:
qualcomm
Message:

Correct NAL unit type name.

Changed NAL_UNIT_CODED_SLICE_TLA_R to NAL_UNIT_CODED_SLICE_TSA_R.

From: Adarsh K. Ramasubramonian <aramasub@…>

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  
    15761576    case NAL_UNIT_CODED_SLICE_TRAIL_R:
    15771577    case NAL_UNIT_CODED_SLICE_TRAIL_N:
    1578     case NAL_UNIT_CODED_SLICE_TLA_R:
     1578    case NAL_UNIT_CODED_SLICE_TSA_R:
    15791579    case NAL_UNIT_CODED_SLICE_TSA_N:
    15801580    case NAL_UNIT_CODED_SLICE_STSA_R:
  • branches/SHM-3.1-dev/source/Lib/TLibCommon/CommonDef.h

    r352 r412  
    200200 
    201201  NAL_UNIT_CODED_SLICE_TSA_N,     // 2
    202   NAL_UNIT_CODED_SLICE_TLA_R,       // 3
     202  NAL_UNIT_CODED_SLICE_TSA_R,       // 3
    203203 
    204204  NAL_UNIT_CODED_SLICE_STSA_N,    // 4
  • branches/SHM-3.1-dev/source/Lib/TLibCommon/NAL.h

    r313 r412  
    7676    return m_nalUnitType == NAL_UNIT_CODED_SLICE_TRAIL_R
    7777        || m_nalUnitType == NAL_UNIT_CODED_SLICE_TRAIL_N
    78         || m_nalUnitType == NAL_UNIT_CODED_SLICE_TLA_R
     78        || m_nalUnitType == NAL_UNIT_CODED_SLICE_TSA_R
    7979        || m_nalUnitType == NAL_UNIT_CODED_SLICE_TSA_N
    8080        || m_nalUnitType == NAL_UNIT_CODED_SLICE_STSA_R
  • branches/SHM-3.1-dev/source/Lib/TLibCommon/TComSlice.cpp

    r411 r412  
    12951295    assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getUsedByCurr()==0||rpcPic->getTLayer()<=this->getTLayer());
    12961296    //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_TLA_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)
    12981298    {
    12991299      assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getTLayer()<this->getTLayer());
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/NALread.cpp

    r313 r412  
    126126  else
    127127  {
    128     assert( nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_TLA_R
     128    assert( nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_TSA_R
    129129         && nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_TSA_N
    130130         && nalu.m_nalUnitType != NAL_UNIT_CODED_SLICE_STSA_R
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r411 r412  
    14691469    case NAL_UNIT_CODED_SLICE_TRAIL_R:
    14701470    case NAL_UNIT_CODED_SLICE_TRAIL_N:
    1471     case NAL_UNIT_CODED_SLICE_TLA_R:
     1471    case NAL_UNIT_CODED_SLICE_TSA_R:
    14721472    case NAL_UNIT_CODED_SLICE_TSA_N:
    14731473    case NAL_UNIT_CODED_SLICE_STSA_R:
  • branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r411 r412  
    816816        else
    817817        {
    818           pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TLA_R);
     818          pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TSA_R);
    819819        }
    820820      }
     
    25672567    case NAL_UNIT_CODED_SLICE_TRAIL_R: return "TRAIL_R";
    25682568    case NAL_UNIT_CODED_SLICE_TRAIL_N: return "TRAIL_N";
    2569     case NAL_UNIT_CODED_SLICE_TLA_R:      return "TLA_R";
     2569    case NAL_UNIT_CODED_SLICE_TSA_R:      return "TSA_R";
    25702570    case NAL_UNIT_CODED_SLICE_TSA_N: return "TSA_N";
    25712571    case NAL_UNIT_CODED_SLICE_STSA_R: return "STSA_R";
Note: See TracChangeset for help on using the changeset viewer.