Changeset 479 in SHVCSoftware for branches/SHM-4.0-dev/source/Lib/TLibCommon
- Timestamp:
- 15 Nov 2013, 22:47:32 (11 years ago)
- Location:
- branches/SHM-4.0-dev/source/Lib/TLibCommon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-4.0-dev/source/Lib/TLibCommon/TComSlice.cpp
r475 r479 2000 2000 #if JCTVC_M0458_INTERLAYER_RPS_SIG 2001 2001 m_maxOneActiveRefLayerFlag = true; 2002 #endif 2003 #if O0062_POC_LSB_NOT_PRESENT_FLAG 2004 ::memset(m_pocLsbNotPresentFlag, 0, sizeof(m_pocLsbNotPresentFlag)); 2002 2005 #endif 2003 2006 #if N0147_IRAP_ALIGN_FLAG -
branches/SHM-4.0-dev/source/Lib/TLibCommon/TComSlice.h
r475 r479 566 566 Bool m_maxOneActiveRefLayerFlag; 567 567 #endif 568 #if O0062_POC_LSB_NOT_PRESENT_FLAG 569 Bool m_pocLsbNotPresentFlag[MAX_VPS_LAYER_ID_PLUS1]; 570 #endif 568 571 #if N0147_IRAP_ALIGN_FLAG 569 572 Bool m_crossLayerIrapAlignFlag; … … 779 782 Bool getMaxOneActiveRefLayerFlag() { return m_maxOneActiveRefLayerFlag; } 780 783 Void setMaxOneActiveRefLayerFlag(Bool x) { m_maxOneActiveRefLayerFlag = x; } 781 #endif 784 #endif 785 #if O0062_POC_LSB_NOT_PRESENT_FLAG 786 UInt getPocLsbNotPresentFlag(Int i) { return m_pocLsbNotPresentFlag[i]; } 787 Void setPocLsbNotPresentFlag(Int i, Bool x) { m_pocLsbNotPresentFlag[i] = x; } 788 #endif 782 789 #if N0147_IRAP_ALIGN_FLAG 783 790 Bool getCrossLayerIrapAlignFlag() { return m_crossLayerIrapAlignFlag; } -
branches/SHM-4.0-dev/source/Lib/TLibCommon/TypeDef.h
r477 r479 155 155 #define AUXILIARY_PICTURES 1 ///< JCTVC-O0041: auxiliary picture layers 156 156 157 #define O0062_POC_LSB_NOT_PRESENT_FLAG 1 ///< JCTVC-O0062: signal poc_lsb_not_present_flag for each layer in VPS extension 157 158 #define SHM_FIX7 1 ///< fix for SHVC WD ticket #7 158 159
Note: See TracChangeset for help on using the changeset viewer.