Changeset 1439 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon
- Timestamp:
- 12 Aug 2015, 20:03:56 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibCommon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r1431 r1439 3024 3024 Int TComVPS::scalTypeToScalIdx( ScalabilityType scalType ) const 3025 3025 { 3026 assert( scalType >= 0 &&scalType <= MAX_VPS_NUM_SCALABILITY_TYPES );3027 assert( scalType == MAX_VPS_NUM_SCALABILITY_TYPES || getScalabilityMask( scalType ) );3026 assert( (Int)scalType >= 0 && (Int)scalType <= MAX_VPS_NUM_SCALABILITY_TYPES ); 3027 assert( (Int)scalType == MAX_VPS_NUM_SCALABILITY_TYPES || getScalabilityMask( scalType ) ); 3028 3028 Int scalIdx = 0; 3029 3029 for( Int curScalType = 0; curScalType < scalType; curScalType++ ) -
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r1400 r1439 717 717 UInt m_treePartitionLayerIdList[MAX_LAYERS][MAX_LAYERS]; 718 718 719 Int m_TolsIdx;720 719 Bool m_subLayerFlagInfoPresentFlag [MAX_VPS_OP_LAYER_SETS_PLUS1]; 721 720 Bool m_subLayerDpbInfoPresentFlag [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
Note: See TracChangeset for help on using the changeset viewer.