Changeset 56 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/App


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

Intra-BL porting

Location:
branches/HM-10.0-dev-SHM/source/App/TAppEncoder
Files:
2 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());
  • branches/HM-10.0-dev-SHM/source/App/TAppEncoder/TAppEncCfg.h

    r54 r56  
    6060#if SVC_EXTENSION
    6161  TAppEncLayerCfg m_acLayerCfg [MAX_LAYERS];
    62   Int       m_numLayers;                                     ///< number of layers
     62  Int       m_numLayers;                                      ///< number of layers
    6363
    6464  Char*     m_pBitstreamFile;                                 ///< output bitstream file
Note: See TracChangeset for help on using the changeset viewer.