Changeset 1439 in SHVCSoftware for branches/SHM-dev/source/Lib
- Timestamp:
- 12 Aug 2015, 20:03:56 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 5 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]; -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1433 r1439 3411 3411 else 3412 3412 { 3413 vps->setNumVideoSignalInfo(vps->getMaxLayers() - vps->getBaseLayerInternalFlag() ? 0 : 1);3413 vps->setNumVideoSignalInfo(vps->getMaxLayers() - (vps->getBaseLayerInternalFlag() ? 0 : 1)); 3414 3414 } 3415 3415 -
branches/SHM-dev/source/Lib/TLibDecoder/TDecSlice.h
r1287 r1439 69 69 TDecSbac m_entropyCodingSyncContextState; ///< context storate for state of contexts at the wavefront/WPP/entropy-coding-sync second CTU of tile-row 70 70 71 #if SVC_EXTENSION72 UInt* m_saoMaxOffsetQVal;73 #endif74 75 71 public: 76 72 TDecSlice(); -
branches/SHM-dev/source/Lib/TLibEncoder/TEncTop.h
r1348 r1439 143 143 Bool m_pocDecrementedInDPBFlag; 144 144 Int m_currPocMsb; 145 Bool m_prevPicHasEos;146 145 #endif //SVC_EXTENSION 147 146 protected:
Note: See TracChangeset for help on using the changeset viewer.