Changeset 1482 in SHVCSoftware
- Timestamp:
- 18 Oct 2015, 13:24:37 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecGop.cpp
r1459 r1482 77 77 } 78 78 79 #if SVC_EXTENSION80 Void TDecGop::create(UInt layerId)81 {82 m_layerId = layerId;83 }84 #else85 79 Void TDecGop::create() 86 80 { 87 81 88 82 } 89 #endif90 83 91 84 Void TDecGop::destroy() … … 212 205 { 213 206 #if SVC_EXTENSION 214 if( pcSlice->getRefPic(RefPicList(iRefList), iRefIndex)->isILR( m_layerId) )207 if( pcSlice->getRefPic(RefPicList(iRefList), iRefIndex)->isILR( pcSlice->getLayerId() ) ) 215 208 { 216 209 UInt refLayerId = pcSlice->getRefPic(RefPicList(iRefList), iRefIndex)->getLayerId(); -
branches/SHM-dev/source/Lib/TLibDecoder/TDecGop.h
r1292 r1482 83 83 84 84 #if SVC_EXTENSION 85 UInt m_layerId;86 85 TDecTop** m_ppcTDecTop; 87 86 #endif … … 103 102 TComSampleAdaptiveOffset* pcSAO 104 103 ); 105 #if SVC_EXTENSION106 Void create (UInt layerId);107 #else108 104 Void create (); 109 #endif110 105 Void destroy (); 111 106 Void decompressSlice(TComInputBitstream* pcBitstream, TComPic* pcPic ); -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1442 r1482 168 168 Void TDecTop::create() 169 169 { 170 #if SVC_EXTENSION171 m_cGopDecoder.create( m_layerId );172 #else173 170 m_cGopDecoder.create(); 174 #endif175 171 m_apcSlicePilot = new TComSlice; 172 #if SVC_EXTENSION 173 m_apcSlicePilot->setLayerId(m_layerId); 174 #endif 176 175 m_uiSliceIdx = 0; 177 176 }
Note: See TracChangeset for help on using the changeset viewer.