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


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

rename max_tid_il_ref_pics_plus1_present_flag and related functions with max_tid_ref_present_flag

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

Legend:

Unmodified
Added
Removed
  • branches/SHM-3.1-dev/source/Lib/TLibCommon/TComSlice.h

    r389 r398  
    721721#endif
    722722#if N0120_MAX_TID_REF_PRESENT_FLAG
    723   Bool   getMaxTidIlRefPicsPlus1PresentFlag()                   { return m_maxTidIlRefPicsPlus1PresentFlag ;}
    724   Void   setMaxTidIlRefPicsPlus1PresentFlag(Bool x)             { m_maxTidIlRefPicsPlus1PresentFlag = x;}
     723  Bool   getMaxTidRefPresentFlag()                                  { return m_maxTidIlRefPicsPlus1PresentFlag ;}
     724  Void   setMaxTidRefPresentFlag(Bool x)                            { m_maxTidIlRefPicsPlus1PresentFlag = x;}
    725725#endif
    726726#if M0040_ADAPTIVE_RESOLUTION_CHANGE
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r397 r398  
    998998#if JCTVC_M0203_INTERLAYER_PRED_IDC
    999999#if N0120_MAX_TID_REF_PRESENT_FLAG
    1000   READ_FLAG( uiCode, "max_tid_il_ref_pics_plus1_present_flag"); vps->setMaxTidIlRefPicsPlus1PresentFlag(uiCode ? true : false);
    1001   if (vps->getMaxTidIlRefPicsPlus1PresentFlag())
     1000  READ_FLAG( uiCode, "max_tid_ref_present_flag"); vps->setMaxTidRefPresentFlag(uiCode ? true : false);
     1001  if (vps->getMaxTidRefPresentFlag())
    10021002  {
    10031003    for(i = 0; i < vps->getMaxLayers() - 1; i++)
  • branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r394 r398  
    783783#if JCTVC_M0203_INTERLAYER_PRED_IDC
    784784#if N0120_MAX_TID_REF_PRESENT_FLAG
    785    WRITE_FLAG( vps->getMaxTidIlRefPicsPlus1PresentFlag(), "max_tid_il_ref_pics_plus1_present_flag");
    786    if (vps->getMaxTidIlRefPicsPlus1PresentFlag())
     785   WRITE_FLAG( vps->getMaxTidRefPresentFlag(), "max_tid_ref_present_flag");
     786   if (vps->getMaxTidRefPresentFlag())
    787787   {
    788788     for( i = 0; i < vps->getMaxLayers() - 1; i++)
Note: See TracChangeset for help on using the changeset viewer.