Changeset 1548 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon
- Timestamp:
- 23 Mar 2016, 00:16:54 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibCommon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComPic.h
r1512 r1548 119 119 Bool getCheckLTMSBPresent () { return m_bCheckLTMSB;} 120 120 121 TComPicSym* getPicSym() { return &m_picSym; } 122 const TComPicSym* getPicSym() const { return &m_picSym; } 123 TComSlice* getSlice(Int i) { return m_picSym.getSlice(i); } 124 Int getPOC() const { return m_picSym.getSlice(m_uiCurrSliceIdx)->getPOC(); } 121 TComPicSym* getPicSym() { return &m_picSym; } 122 const TComPicSym* getPicSym() const { return &m_picSym; } 123 TComSlice* getSlice(Int i) { return m_picSym.getSlice(i); } 124 const TComSlice* getSlice(Int i) const { return m_picSym.getSlice(i); } 125 Int getPOC() const { return m_picSym.getSlice(m_uiCurrSliceIdx)->getPOC(); } 125 126 TComDataCU* getCtu( UInt ctuRsAddr ) { return m_picSym.getCtu( ctuRsAddr ); } 126 127 const TComDataCU* getCtu( UInt ctuRsAddr ) const { return m_picSym.getCtu( ctuRsAddr ); } -
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r1547 r1548 172 172 #define U0033_ALTERNATIVE_TRANSFER_CHARACTERISTICS_SEI 1 ///< Alternative transfer characteristics SEI message (JCTVC-U0033, with syntax naming from V1005) 173 173 #define W0062_RECALCULATE_QP_TO_ALIGN_WITH_LAMBDA 0 ///< This recalculates QP to align with the derived lambda (same relation as for all intra coding is used). Currently disabled by default. 174 #define OPTIONAL_RESET_SAO_ENCODING_AFTER_IRAP 1 ///< Adds command line option to reset SAO parameters after each IRAP. 174 175 175 176 // ====================================================================================================================
Note: See TracChangeset for help on using the changeset viewer.