Changeset 1489 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon
- Timestamp:
- 2 Dec 2015, 23:30:10 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibCommon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComPicSym.cpp
r1485 r1489 47 47 // ==================================================================================================================== 48 48 49 #if SVC_EXTENSION 50 TComVPS* TComPicSym::m_vps = NULL; 51 #endif 52 49 53 TComPicSym::TComPicSym() 50 54 :m_frameWidthInCtus(0) … … 83 87 m_sps = sps; 84 88 m_pps = pps; 85 m_vps = &vps; 89 90 if( !m_vps ) 91 { 92 m_vps = new TComVPS(vps); 93 } 94 else 95 { 96 *m_vps = vps; 97 } 86 98 87 99 const ChromaFormat chromaFormatIDC = vps.getChromaFormatIdc(&sps, layerId); … … 210 222 delete [] m_pParentARLBuffer; 211 223 m_pParentARLBuffer = NULL; 224 #endif 225 226 #if SVC_EXTENSION 227 if( m_vps ) 228 { 229 delete m_vps; 230 m_vps = NULL; 231 } 212 232 #endif 213 233 } -
branches/SHM-dev/source/Lib/TLibCommon/TComPicSym.h
r1296 r1489 121 121 122 122 #if SVC_EXTENSION 123 const TComVPS* m_vps; 123 // SHM: temporal solution to keep VPS with a picture, ideally it should be picture specific, but currently sizeof(TComVPS) = 232897716 124 static TComVPS* m_vps; 124 125 #if N0383_IL_CONSTRAINED_TILE_SETS_SEI 125 126 Int* m_piTileSetIdxMap; //the map of the tile set index relative to LCU raster scan address
Note: See TracChangeset for help on using the changeset viewer.