Changeset 1223 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 9 Jul 2015, 00:08:52 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1217 r1223 397 397 pcPPS->setPocResetInfoPresentFlag(uiCode ? true : false); 398 398 399 #if SCALINGLIST_INFERRING400 399 READ_FLAG( uiCode, "pps_infer_scaling_list_flag" ); 401 400 pcPPS->setInferScalingListFlag( uiCode ); … … 409 408 pcPPS->setScalingListPresentFlag( false ); 410 409 } 411 #endif412 410 413 411 READ_UVLC( uiCode, "num_ref_loc_offsets" ); pcPPS->setNumRefLayerLocationOffsets(uiCode); -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1220 r1223 460 460 461 461 #if SVC_EXTENSION 462 #if SCALINGLIST_INFERRING463 462 // scaling list settings and checks 464 463 TComVPS *activeVPS = m_parameterSetManagerDecoder.getActiveVPS(); … … 524 523 525 524 } 526 #endif527 525 528 526 #if AVC_BASE … … 1796 1794 pcSlice->setScalingList ( pcSlice->getSPS()->getScalingList() ); 1797 1795 1798 #if S CALINGLIST_INFERRING1796 #if SVC_EXTENSION 1799 1797 if( pcSlice->getPPS()->getScalingListPresentFlag() || pcSlice->getPPS()->getInferScalingListFlag() ) 1800 1798 #else … … 1804 1802 pcSlice->setScalingList ( pcSlice->getPPS()->getScalingList() ); 1805 1803 } 1806 #if SCALINGLIST_INFERRING 1804 1805 #if SVC_EXTENSION 1807 1806 if( m_layerId == 0 || ( m_layerId > 0 && !pcSlice->getPPS()->getInferScalingListFlag() && !pcSlice->getSPS()->getInferScalingListFlag() ) ) 1808 1807 #endif … … 1866 1865 TComPPS* pps = new TComPPS(); 1867 1866 1868 #if S CALINGLIST_INFERRING1867 #if SVC_EXTENSION 1869 1868 pps->setLayerId( m_layerId ); 1870 1869 #endif -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h
r1220 r1223 250 250 Void setCommonDecoderParams(CommonDecoderParams* x) { m_commonDecoderParams = x; } 251 251 Void checkValueOfTargetOutputLayerSetIdx(TComVPS *vps); 252 #if SCALINGLIST_INFERRING 252 253 253 ParameterSetManagerDecoder* getParameterSetManager() { return &m_parameterSetManagerDecoder; } 254 #endif 254 255 255 #if CONFORMANCE_BITSTREAM_MODE 256 256 std::vector<TComPic>* getConfListPic() {return &m_confListPic; }
Note: See TracChangeset for help on using the changeset viewer.