Changeset 412 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib/TLibCommon


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/Lib/TLibCommon
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • 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());
Note: See TracChangeset for help on using the changeset viewer.