Changeset 600 in SHVCSoftware for branches/SHM-5.1-dev


Ignore:
Timestamp:
6 Feb 2014, 02:58:33 (11 years ago)
Author:
qualcomm
Message:

Added highest TId to CommonDecoderParams class.

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-5.1-dev/source/Lib/TLibCommon/CommonDef.h

    r595 r600  
    288288  std::vector<Int> *m_targetDecLayerIdSet;
    289289  Bool m_valueCheckedFlag;
     290  Int m_highestTId;
    290291public:
    291292  CommonDecoderParams():
     
    294295    , m_targetDecLayerIdSet(NULL)
    295296    , m_valueCheckedFlag(false)
     297    , m_highestTId(6)
    296298 {}
    297299
     
    308310  Bool getValueCheckedFlag()            { return m_valueCheckedFlag;}
    309311 
     312  Void setHighestTId(const Int x) { m_highestTId = x; }
     313  Int  getHighestTId()            { return m_highestTId; }
    310314};
    311315#endif
Note: See TracChangeset for help on using the changeset viewer.