Changeset 70 in SHVCSoftware
- Timestamp:
- 7 Mar 2013, 23:25:14 (12 years ago)
- Location:
- trunk/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source
- Property svn:mergeinfo changed
/branches/SHM-1.1-dev/source merged: 60,64,68
- Property svn:mergeinfo changed
-
trunk/source/Lib/TLibCommon/TComPic.cpp
r55 r70 48 48 TComPic::TComPic() 49 49 : m_uiTLayer (0) 50 #if SVC_EXTENSION 51 , m_layerId( 0 ) 52 #endif 50 53 , m_bUsedByCurr (false) 51 54 , m_bIsLongTerm (false) … … 66 69 , m_SEIs (NULL) 67 70 #if SVC_EXTENSION 68 , m_layerId( 0 )69 71 , m_bSpatialEnhLayer( false ) 70 72 , m_pcFullPelBaseRec( NULL ) … … 98 100 } 99 101 100 m_layerId = pcSps ->getLayerId();102 m_layerId = pcSps ? pcSps->getLayerId() : 0; 101 103 102 104 /* there are no SEI messages associated with this picture initially */ -
trunk/source/Lib/TLibCommon/TComSlice.cpp
r55 r70 2220 2220 RefPicList eRefPicList = RefPicList( iRefPicList ); 2221 2221 2222 assert( pcSlice->getNumRefIdx( eRefPicList) > 0 );2222 assert( pcSlice->getNumRefIdx( eRefPicList) >= 0 ); 2223 2223 setNumRefIdx( eRefPicList, pcSlice->getNumRefIdx( eRefPicList ) - 1 ); 2224 2224 assert( getNumRefIdx( eRefPicList) <= MAX_NUM_REF);
Note: See TracChangeset for help on using the changeset viewer.