Ignore:
Timestamp:
20 Jul 2015, 14:13:33 (9 years ago)
Author:
tech
Message:

Upgrade to HM-16.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-14.1-update-dev1/source/Lib/TLibCommon/TComSlice.h

    r1279 r1287  
    24792479  Int                        m_iAssociatedIRAP;
    24802480  NalUnitType                m_iAssociatedIRAPType;
    2481   TComReferencePictureSet*   m_pcRPS;
    2482   TComReferencePictureSet    m_LocalRPS;
    2483   Int                        m_iBDidx;
     2481  const TComReferencePictureSet* m_pRPS;             //< pointer to RPS, either in the SPS or the local RPS in the same slice header
     2482  TComReferencePictureSet    m_localRPS;             //< RPS when present in slice header
     2483  Int                        m_rpsIdx;               //< index of used RPS in the SPS or -1 for local RPS in the slice header
    24842484  TComRefPicListModification m_RefPicListModification;
    24852485  NalUnitType                m_eNalUnitType;         ///< Nal unit type for the slice
     
    26762676  Void                        setSaoEnabledFlag(ChannelType chType, Bool s)          {m_saoEnabledFlag[chType] =s;                                   }
    26772677  Bool                        getSaoEnabledFlag(ChannelType chType) const            { return m_saoEnabledFlag[chType];                              }
    2678   Void                        setRPS( TComReferencePictureSet *pcRPS )               { m_pcRPS = pcRPS;                                              }
    2679   TComReferencePictureSet*    getRPS()                                               { return m_pcRPS;                                               }
    2680   TComReferencePictureSet*    getLocalRPS()                                          { return &m_LocalRPS;                                           }
    2681 
    2682   Void                        setRPSidx( Int iBDidx )                                { m_iBDidx = iBDidx;                                            }
    2683   Int                         getRPSidx() const                                      { return m_iBDidx;                                              }
     2678  Void                        setRPS( const TComReferencePictureSet *pcRPS )         { m_pRPS = pcRPS;                                               }
     2679  const TComReferencePictureSet* getRPS()                                            { return m_pRPS;                                                }
     2680  TComReferencePictureSet*    getLocalRPS()                                          { return &m_localRPS;                                           }
     2681
     2682  Void                        setRPSidx( Int rpsIdx )                                { m_rpsIdx = rpsIdx;                                            }
     2683  Int                         getRPSidx() const                                      { return m_rpsIdx;                                              }
    26842684  TComRefPicListModification* getRefPicListModification()                            { return &m_RefPicListModification;                             }
    26852685  Void                        setLastIDR(Int iIDRPOC)                                { m_iLastIDR = iIDRPOC;                                         }
Note: See TracChangeset for help on using the changeset viewer.