Changeset 1490 in SHVCSoftware
- Timestamp:
- 2 Dec 2015, 23:32:54 (9 years ago)
- Location:
- branches/SHM-dev/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppDecoder/TAppDecTop.cpp
r1486 r1490 195 195 streamYUV.open( m_reconFileNameBL.c_str(), fstream::in | fstream::binary ); 196 196 } 197 TComList<TComPic*> *cListPic = m_apcTDecTop[0]->getListPic();198 197 m_apcTDecTop[0]->setBLReconFile( &streamYUV ); 199 198 pcBLPic.setLayerId( 0 ); 200 cListPic->pushBack( &pcBLPic);199 m_apcTDecTop[0]->setBlPic(&pcBLPic); 201 200 #endif 202 201 -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1489 r1490 1913 1913 if( vps->getNonHEVCBaseLayerFlag() ) 1914 1914 { 1915 m_ppcTDecTop[0]->getListPic()->pushBack( m_ppcTDecTop[0]->getBlPic() ); 1916 1915 1917 if( !m_ppcTDecTop[0]->getBLReconFile()->good() ) 1916 1918 { … … 1918 1920 exit(EXIT_FAILURE); 1919 1921 } 1920 } 1921 else 1922 { 1923 TComList<TComPic*> *cListPic = m_ppcTDecTop[0]->getListPic(); 1924 cListPic->clear(); 1925 } 1922 } 1926 1923 #endif 1927 1924 -
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h
r1385 r1490 140 140 #if AVC_BASE 141 141 fstream* m_pBLReconFile; 142 TComPic* m_blPic; 142 143 #endif 143 144 … … 250 251 Void setBLReconFile( fstream* pFile ) { m_pBLReconFile = pFile; } 251 252 fstream* getBLReconFile() { return m_pBLReconFile; } 253 Void setBlPic( TComPic* pic ) { m_blPic = pic; } 254 TComPic* getBlPic() { return m_blPic; } 252 255 #endif 253 256 Void xInitILRP(TComSlice *slice);
Note: See TracChangeset for help on using the changeset viewer.