Ignore:
Timestamp:
18 Jun 2013, 17:25:49 (11 years ago)
Author:
tech
Message:

Minor clean ups.

Location:
branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncCavlc.cpp

    r476 r478  
    581581  WRITE_FLAG( 0, "sps_extension_flag" );
    582582#endif
    583 
    584583#if H_3D_IV_MERGE
    585584  if( pcSPS->getViewIndex() || pcSPS->isDepth() )
  • branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncGOP.cpp

    r476 r478  
    682682#endif
    683683
    684 #if H_3D_IV_MERGE
     684#if H_3D_IV_MERGE 
    685685    TAppEncTop* tAppEncTop = m_pcEncTop->getEncTop();
    686686    TComPic * const pcTexturePic = m_pcEncTop->getIsDepth() ? tAppEncTop->getPicFromView( getViewIndex(), pcSlice->getPOC(), false ) : NULL;
     
    10421042    m_storedStartCUAddrForEncodingSliceSegment.push_back(nextCUAddr);
    10431043    startCUAddrSliceSegmentIdx++;
    1044 
    10451044#if H_3D_IV_MERGE
    10461045    m_pcDepthMapGenerator->initViewComponent( pcPic );
    10471046#endif
    1048 
    10491047#if H_3D_NBDV
    10501048      if(pcSlice->getViewIndex() && !pcSlice->getIsDepth()) //Notes from QC: this condition shall be changed once the configuration is completed, e.g. in pcSlice->getSPS()->getMultiviewMvPredMode() || ARP in prev. HTM. Remove this comment once it is done.
  • branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncGOP.h

    r476 r478  
    110110  Int                     m_viewIndex;
    111111  Bool                    m_isDepth;
    112 
    113112#if H_3D_IV_MERGE
    114113  TComDepthMapGenerator*  m_pcDepthMapGenerator;
    115114#endif
    116 
    117115#endif
    118116#endif
  • branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncTop.cpp

    r476 r478  
    123123  m_cDepthMapGenerator. create( false, getSourceWidth(), getSourceHeight(), g_uiMaxCUDepth, g_uiMaxCUWidth, g_uiMaxCUHeight, g_bitDepthY, PDM_SUB_SAMP_EXP_X(m_uiPredDepthMapGeneration), PDM_SUB_SAMP_EXP_Y(m_uiPredDepthMapGeneration) );
    124124#endif
    125 
    126125#if RATE_CONTROL_LAMBDA_DOMAIN
    127126  if ( m_RCEnableRateControl )
     
    229228  m_cLoopFilter.        destroy();
    230229  m_cRateCtrl.          destroy();
    231 
    232230#if H_3D_IV_MERGE
    233231  m_cDepthMapGenerator. destroy();
     
    322320  m_cDepthMapGenerator.init( (TComPrediction*)this->getPredSearch(), m_pcTAppEncTop->getVPSAccess(), m_pcTAppEncTop->getSPSAccess(), m_pcTAppEncTop->getAUPicAccess() );
    323321#endif
    324 
    325322  // initialize transform & quantization class
    326323  m_pcCavlcCoder = getCavlcCoder();
     
    13341331}
    13351332#endif
    1336 
    1337 
    13381333//! \}
  • branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncTop.h

    r476 r478  
    5757#include "TEncPreanalyzer.h"
    5858#include "TEncRateCtrl.h"
    59 
    6059#if H_3D_IV_MERGE
    6160#include "TLibCommon/TComDepthMapGenerator.h"
     
    7170class TAppEncTop;
    7271#endif
    73 
    7472/// encoder class
    7573class TEncTop : public TEncCfg
     
    104102  TEncSlice               m_cSliceEncoder;                ///< slice encoder
    105103  TEncCu                  m_cCuEncoder;                   ///< CU encoder
    106 
    107104#if H_3D_IV_MERGE
    108105  TComDepthMapGenerator   m_cDepthMapGenerator;           ///< depth map generator
    109106#endif
    110 
    111107  // SPS
    112108  TComSPS                 m_cSPS;                         ///< SPS
Note: See TracChangeset for help on using the changeset viewer.