Changeset 399 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
17 Sep 2013, 19:39:11 (11 years ago)
Author:
seregin
Message:

rename MaxSublayerForIlpPlus1 with MaxTidIlRefPicsPlus1

Location:
branches/SHM-3.1-dev/source/Lib/TLibDecoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r398 r399  
    10031003    for(i = 0; i < vps->getMaxLayers() - 1; i++)
    10041004    {
    1005       READ_CODE( 3, uiCode, "max_sublayer_for_ilp_plus1[i]" ); vps->setMaxSublayerForIlpPlus1(i, uiCode);
     1005      READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode);
    10061006#if N0120_MAX_TID_REF_CFG
    10071007      assert( uiCode <= vps->getMaxTLayers());
     
    10151015    for(i = 0; i < vps->getMaxLayers() - 1; i++)
    10161016    {
    1017       vps->setMaxSublayerForIlpPlus1(i, 7);
     1017      vps->setMaxTidIlRefPicsPlus1(i, 7);
    10181018    }
    10191019  }
     
    10211021  for(i = 0; i < vps->getMaxLayers() - 1; i++)
    10221022  {
    1023     READ_CODE( 3, uiCode, "max_sublayer_for_ilp_plus1[i]" ); vps->setMaxSublayerForIlpPlus1(i, uiCode);
     1023    READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode);
    10241024    assert( uiCode <= vps->getMaxTLayers() );
    10251025  }
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r389 r399  
    467467
    468468  Int remainingInterLayerReferencesFlag = 0;
    469   if ( currTid <= pcSlice->getVPS()->getMaxSublayerForIlpPlus1(latestDecLayerId) - 1 )
     469  if ( currTid <= pcSlice->getVPS()->getMaxTidIlRefPicsPlus1(latestDecLayerId) - 1 )
    470470  {
    471471    for ( Int j = latestDecIdx + 1; j < numTargetDecLayers; j++ )
Note: See TracChangeset for help on using the changeset viewer.