Changeset 1485 in SHVCSoftware
- Timestamp:
- 4 Nov 2015, 03:25:23 (9 years ago)
- Location:
- branches/SHM-dev/source
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppDecoder/TAppDecTop.cpp
r1479 r1485 234 234 { 235 235 read(nalu); 236 237 #if SVC_EXTENSION 238 // ignore any NAL units with nuh_layer_id == 63 239 if( nalu.m_nuhLayerId == 63 ) 240 { 241 printf("Ignore NAL unit with m_nuhLayerId equal to 63\n"); 242 continue; 243 } 244 #endif 245 236 246 if( (m_iMaxTemporalLayer >= 0 && nalu.m_temporalId > m_iMaxTemporalLayer) || !isNaluWithinTargetDecLayerIdSet(&nalu) || 237 247 #if CONFORMANCE_BITSTREAM_MODE -
branches/SHM-dev/source/Lib/TLibCommon/TComPic.cpp
r1442 r1485 88 88 const Window& conformanceWindow = vps.getConformanceWindow( &sps, layerId ); 89 89 90 m_layerId = layerId; 91 90 92 m_picSym.create( vps, sps, pps, uiMaxDepth, layerId ); 91 93 -
branches/SHM-dev/source/Lib/TLibCommon/TComPicSym.cpp
r1443 r1485 121 121 allocateNewSlice(); 122 122 123 #if SVC_EXTENSION 124 m_apSlices.back()->setLayerId( layerId ); 125 #endif 126 123 127 #if ADAPTIVE_QP_SELECTION 124 128 if (m_pParentARLBuffer == NULL) -
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r1483 r1485 3594 3594 3595 3595 pcIlpPic[refLayerIdc]->getPicYuvRec()->setBorderExtension( false ); 3596 pcIlpPic[refLayerIdc]->getPicYuvRec()->extendPicBorder(); 3596 pcIlpPic[refLayerIdc]->getPicYuvRec()->extendPicBorder(); 3597 3597 pcIlpPic[refLayerIdc]->setIsLongTerm(true); 3598 3598 -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1484 r1485 170 170 m_cGopDecoder.create(); 171 171 m_apcSlicePilot = new TComSlice; 172 #if SVC_EXTENSION173 m_apcSlicePilot->setLayerId(m_layerId);174 #endif175 172 m_uiSliceIdx = 0; 176 173 } … … 1969 1966 // ignore any NAL units with nuh_layer_id == 63 1970 1967 if( nalu.m_nuhLayerId == 63 ) 1971 { 1968 { 1972 1969 return false; 1973 1970 }
Note: See TracChangeset for help on using the changeset viewer.