Changeset 1263 in SHVCSoftware
- Timestamp:
- 14 Jul 2015, 03:38:00 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp
r1260 r1263 38 38 #include "TDecCu.h" 39 39 #include "TLibCommon/TComTU.h" 40 #include "TLibCommon/TComPrediction.h" 40 41 #if SVC_EXTENSION 41 42 #include "TDecTop.h" -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.h
r1259 r1263 44 44 45 45 #include "TLibCommon/TComTrQuant.h" 46 #include "TLibCommon/TComPrediction.h"47 46 #include "TDecEntropy.h" 48 47 -
branches/SHM-dev/source/Lib/TLibDecoder/TDecEntropy.cpp
r1260 r1263 38 38 #include "TDecEntropy.h" 39 39 #include "TLibCommon/TComTU.h" 40 #include "TLibCommon/TComPrediction.h" 40 41 41 42 #if ENVIRONMENT_VARIABLE_DEBUG_AND_TEST -
branches/SHM-dev/source/Lib/TLibDecoder/TDecEntropy.h
r1259 r1263 43 43 #include "TLibCommon/TComSlice.h" 44 44 #include "TLibCommon/TComPic.h" 45 #include "TLibCommon/TComPrediction.h"46 45 #include "TLibCommon/TComSampleAdaptiveOffset.h" 47 46 #include "TLibCommon/TComRectangle.h" … … 50 49 class TDecCavlc; 51 50 class ParameterSetManagerDecoder; 51 class TComPrediction; 52 52 #if CGS_3D_ASYMLUT 53 53 class TCom3DAsymLUT; -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1259 r1263 2207 2207 g_uiAddCUDepth = max (0, sps->getLog2MinCodingBlockSize() - (Int)sps->getQuadtreeTULog2MinSize() ); 2208 2208 2209 Int numReorderPics[MAX_TLAYER];2210 2211 for( Int temporalLayer=0; temporalLayer < MAX_TLAYER; temporalLayer++ )2212 {2213 if( m_commonDecoderParams->getTargetOutputLayerSetIdx() == 0 )2214 {2215 assert( this->getLayerId() == 0 );2216 numReorderPics[temporalLayer] = sps->getNumReorderPics(temporalLayer);2217 }2218 else2219 {2220 // SHM decoders will use DPB size table in the VPS to determine the number of reorder pictures.2221 numReorderPics[temporalLayer] = vps->getMaxVpsNumReorderPics( getCommonDecoderParams()->getTargetOutputLayerSetIdx() , temporalLayer);2222 }2223 }2224 2225 2209 if (m_cIlpPic[0] == NULL) 2226 2210 { -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h
r1259 r1263 44 44 #include "TLibCommon/TComPic.h" 45 45 #include "TLibCommon/TComTrQuant.h" 46 #include "TLibCommon/TComPrediction.h" 46 47 #include "TLibCommon/SEI.h" 47 48 #if CGS_3D_ASYMLUT
Note: See TracChangeset for help on using the changeset viewer.