Changeset 56 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/App/TAppEncoder/TAppEncCfg.cpp
- Timestamp:
- 4 Mar 2013, 23:18:12 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/App/TAppEncoder/TAppEncCfg.cpp
r54 r56 94 94 TAppEncCfg::~TAppEncCfg() 95 95 { 96 #if !SVC_EXTENSION 96 #if SVC_EXTENSION 97 free(m_pBitstreamFile); 98 #else 99 free(m_pchBitstreamFile); 97 100 if ( m_aidQP ) 98 101 { … … 101 104 free(m_pchInputFile); 102 105 #endif 103 free(m_pBitstreamFile);104 106 #if !SVC_EXTENSION 105 107 free(m_pchReconFile); … … 653 655 #else 654 656 m_pchInputFile = cfg_InputFile.empty() ? NULL : strdup(cfg_InputFile.c_str()); 655 m_p hBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());657 m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str()); 656 658 m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str()); 657 659 m_pchdQPFile = cfg_dQPFile.empty() ? NULL : strdup(cfg_dQPFile.c_str());
Note: See TracChangeset for help on using the changeset viewer.