Changeset 1490 in SHVCSoftware


Ignore:
Timestamp:
2 Dec 2015, 23:32:54 (9 years ago)
Author:
seregin
Message:

remove picture list clearing

Location:
branches/SHM-dev/source
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppDecoder/TAppDecTop.cpp

    r1486 r1490  
    195195    streamYUV.open( m_reconFileNameBL.c_str(), fstream::in | fstream::binary );
    196196  }
    197   TComList<TComPic*> *cListPic = m_apcTDecTop[0]->getListPic();
    198197  m_apcTDecTop[0]->setBLReconFile( &streamYUV );
    199198  pcBLPic.setLayerId( 0 );
    200   cListPic->pushBack( &pcBLPic );
     199  m_apcTDecTop[0]->setBlPic(&pcBLPic);
    201200#endif
    202201
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r1489 r1490  
    19131913  if( vps->getNonHEVCBaseLayerFlag() )
    19141914  {
     1915    m_ppcTDecTop[0]->getListPic()->pushBack( m_ppcTDecTop[0]->getBlPic() );
     1916
    19151917    if( !m_ppcTDecTop[0]->getBLReconFile()->good() )
    19161918    {
     
    19181920      exit(EXIT_FAILURE);
    19191921    }       
    1920   }
    1921   else
    1922   {
    1923     TComList<TComPic*> *cListPic = m_ppcTDecTop[0]->getListPic();
    1924     cListPic->clear();
    1925   }
     1922  } 
    19261923#endif
    19271924
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h

    r1385 r1490  
    140140#if AVC_BASE
    141141  fstream*                m_pBLReconFile;
     142  TComPic*                m_blPic;
    142143#endif
    143144
     
    250251  Void      setBLReconFile( fstream* pFile )                                { m_pBLReconFile = pFile; }
    251252  fstream*  getBLReconFile()                                                { return m_pBLReconFile;  }
     253  Void      setBlPic( TComPic* pic )                                        { m_blPic = pic;          }
     254  TComPic*  getBlPic()                                                      { return m_blPic;         }
    252255#endif
    253256  Void      xInitILRP(TComSlice *slice);
Note: See TracChangeset for help on using the changeset viewer.