Changeset 1525 in SHVCSoftware
- Timestamp:
- 9 Feb 2016, 03:08:50 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r1524 r1525 411 411 412 412 #if SVC_EXTENSION 413 if( m_layerId == 0 || ( m_layerId > 0 && ( m_activeNumILRRefIdx == 0 || !( (getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP) && (getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA)) ) ) )413 if( m_layerId == 0 || ( m_layerId > 0 && ( m_activeNumILRRefIdx == 0 || !(m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP && m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA) ) ) ) 414 414 { 415 415 #endif … … 1000 1000 m_pcVPS = pSrc->m_pcVPS; 1001 1001 m_layerId = pSrc->m_layerId; 1002 1003 // SHM: copy inter-layer prediction settings and list modification information from the previous slice. Actually, it can vary on a slice basis, but it is not supported by the current encoder. 1002 1004 m_activeNumILRRefIdx = pSrc->m_activeNumILRRefIdx; 1003 1005 m_interLayerPredEnabledFlag = pSrc->m_interLayerPredEnabledFlag; 1004 1006 memcpy( m_interLayerPredLayerIdc, pSrc->m_interLayerPredLayerIdc, sizeof( m_interLayerPredLayerIdc ) ); 1007 m_RefPicListModification = pSrc->m_RefPicListModification; 1005 1008 #endif 1006 1009 m_pRPS = pSrc->m_pRPS;
Note: See TracChangeset for help on using the changeset viewer.