Changeset 836 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon
- Timestamp:
- 23 Jul 2014, 04:38:40 (11 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibCommon
- Files:
-
- 3 edited
-
TComSlice.cpp (modified) (1 diff)
-
TComSlice.h (modified) (2 diffs)
-
TypeDef.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r834 r836 2309 2309 TComVPS::TComVPS() 2310 2310 : m_VPSId ( 0) 2311 #if VPS_RESERVED_FLAGS 2312 , m_baseLayerInternalFlag (true) 2313 , m_baseLayerAvailableFlag (true) 2314 #endif 2311 2315 , m_uiMaxTLayers ( 1) 2312 2316 , m_uiMaxLayers ( 1) -
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r834 r836 460 460 private: 461 461 Int m_VPSId; 462 #if VPS_RESERVED_FLAGS 463 Bool m_baseLayerInternalFlag; 464 Bool m_baseLayerAvailableFlag; 465 #endif 462 466 UInt m_uiMaxTLayers; 463 467 UInt m_uiMaxLayers; … … 748 752 TComVPS(); 749 753 virtual ~TComVPS(); 754 755 #if VPS_RESERVED_FLAGS 756 Void setBaseLayerInternalFlag(Bool x) { m_baseLayerInternalFlag = x; } 757 Bool getBaseLayerInternalFlag() { return m_baseLayerInternalFlag; } 758 Void setBaseLayerAvailableFlag(Bool x) { m_baseLayerAvailableFlag = x; } 759 Bool getBaseLayerAvailableFlag() { return m_baseLayerAvailableFlag; } 760 #endif 750 761 751 762 Void createHrdParamBuffer() -
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r835 r836 44 44 #define MAX_LAYERS 8 ///< max number of layers the codec is supposed to handle 45 45 46 #define VPS_RESERVED_FLAGS 1 ///< vps_base_layer_internal_flag and vps_base_layer_available_flag 46 47 #define VPS_VUI_OFFSET 1 ///< N0085: Signal VPS VUI offset in the VPS extension 47 48 #define O0137_MAX_LAYERID 1 ///< JCTVC-O0137, JCTVC-O0200, JCTVC-O0223: restrict nuh_layer_id and vps_max_layers_minus1
Note: See TracChangeset for help on using the changeset viewer.