Changeset 295 in SHVCSoftware for branches/SHM-2.1-dev/source
- Timestamp:
- 19 Jun 2013, 03:08:33 (12 years ago)
- Location:
- branches/SHM-2.1-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-2.1-dev/source/Lib/TLibDecoder/TDecTop.cpp
r292 r295 1409 1409 { 1410 1410 UInt refLayerIdc = pcSlice->getInterLayerPredLayerIdc(i); 1411 if (getMotionPredEnabledFlag(refLayerIdc))1411 if( getMotionPredEnabledFlag( pcSlice->getVPS()->getRefLayerId( m_layerId, refLayerIdc ) ) ) 1412 1412 { 1413 1413 if (activeMotionPredReflayerIdx == pcSlice->getColRefLayerIdx()) 1414 1414 { 1415 ilpPic = m_cIlpPic[ i];1415 ilpPic = m_cIlpPic[refLayerIdc]; 1416 1416 break; 1417 1417 } -
branches/SHM-2.1-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r292 r295 3064 3064 { 3065 3065 UInt refLayerIdc = pcSlice->getInterLayerPredLayerIdc(i); 3066 if (m_pcEncTop->getMotionPredEnabledFlag(refLayerIdc))3066 if( m_pcEncTop->getMotionPredEnabledFlag( pcSlice->getVPS()->getRefLayerId( m_layerId, refLayerIdc ) ) ) 3067 3067 { 3068 3068 if (activeMotionPredReflayerIdx == pcSlice->getColRefLayerIdx()) 3069 3069 { 3070 ilpPic = m_pcEncTop->getIlpList()[ i];3070 ilpPic = m_pcEncTop->getIlpList()[refLayerIdc]; 3071 3071 break; 3072 3072 }
Note: See TracChangeset for help on using the changeset viewer.