Ignore:
Timestamp:
4 Mar 2013, 23:18:12 (12 years ago)
Author:
seregin
Message:

Intra-BL porting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HM-10.0-dev-SHM/source/App/TAppEncoder/TAppEncCfg.cpp

    r54 r56  
    9494TAppEncCfg::~TAppEncCfg()
    9595{
    96 #if !SVC_EXTENSION
     96#if SVC_EXTENSION
     97  free(m_pBitstreamFile);
     98#else
     99  free(m_pchBitstreamFile);
    97100  if ( m_aidQP )
    98101  {
     
    101104  free(m_pchInputFile);
    102105#endif
    103   free(m_pBitstreamFile);
    104106#if !SVC_EXTENSION 
    105107  free(m_pchReconFile);
     
    653655#else
    654656  m_pchInputFile = cfg_InputFile.empty() ? NULL : strdup(cfg_InputFile.c_str());
    655   m_phBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
     657  m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
    656658  m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str());
    657659  m_pchdQPFile = cfg_dQPFile.empty() ? NULL : strdup(cfg_dQPFile.c_str());
Note: See TracChangeset for help on using the changeset viewer.