Ignore:
Timestamp:
3 May 2013, 16:46:10 (11 years ago)
Author:
tech
Message:

Further minor cleanups.

Location:
branches/HTM-DEV-0.1-dev/source/App/TAppEncoder
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r364 r365  
    142142  free(m_pRowHeight);
    143143  free(m_scalingListFile);
    144 
    145144#if H_MV
    146145  for( Int i = 0; i < m_GOPListMvc.size(); i++ )
     
    321320  string cfg_InputFile;
    322321#endif
    323 
    324322  string cfg_BitstreamFile;
    325 
    326323#if !H_MV
    327324  string cfg_ReconFile;
    328325#endif
    329 
    330326#if H_MV
    331327  vector<Int>   cfg_dimensionLength;
     
    386382  ("SplittingFlag",         m_splittingFlag      , false                , "Splitting Flag")   
    387383#endif
    388 
    389384  ("SourceWidth,-wdt",      m_iSourceWidth,        0, "Source picture width")
    390385  ("SourceHeight,-hgt",     m_iSourceHeight,       0, "Source picture height")
     
    743738   */
    744739  /* convert std::string to c string for compatability */
    745 
    746740#if !H_MV
    747741  m_pchInputFile = cfg_InputFile.empty() ? NULL : strdup(cfg_InputFile.c_str());
    748742#endif
    749 
    750743  m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
    751 
    752744#if !H_MV
    753745  m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str());
     
    14651457      Int*      m_numReorderPics     = m_numReorderPicsMvc    [layer]; // It is not a member, but this name helps avoiding code duplication !!!
    14661458#endif
    1467 
    14681459  /* if this is an intra-only sequence, ie IntraPeriod=1, don't verify the GOP structure
    14691460   * This permits the ability to omit a GOP structure specification */
     
    19411932  }
    19421933#endif
    1943 
    19441934#if H_MV
    19451935  }
  • branches/HTM-DEV-0.1-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r364 r365  
    111111  }
    112112#endif
    113 
    114113#if H_MV
    115114  xSetLayerIds             ( vps );   
     
    185184#endif
    186185  m_cTEncTop.setPad                          ( m_aiPad );
    187    
    188186#if H_MV
    189187  m_cTEncTop.setMaxTempLayer                 ( m_maxTempLayerMvc[layer] );
     
    727725 .
    728726 */
    729 
    730727#if H_MV
    731728Void TAppEncTop::xGetBuffer( TComPicYuv*& rpcPicYuvRec, UInt layer)
     
    755752
    756753  }
    757 
    758754#if H_MV
    759755  m_picYuvRec[layer]->pushBack( rpcPicYuvRec );
     
    765761Void TAppEncTop::xDeleteBuffer( )
    766762{
    767 
    768763#if H_MV
    769764  for(Int layer=0; layer<m_picYuvRec.size(); layer++)
Note: See TracChangeset for help on using the changeset viewer.