Changeset 292 in 3DVCSoftware for branches/HTM-5.1-dev0/source/App/TAppEncoder


Ignore:
Timestamp:
19 Feb 2013, 17:50:51 (12 years ago)
Author:
tech
Message:

Removed macros related to IV motion parameter prediction.

Location:
branches/HTM-5.1-dev0/source/App/TAppEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp

    r287 r292  
    398398  ("PredDepthMapGen",  m_uiPredDepthMapGeneration, (UInt)0, "generation of prediction depth maps for motion data prediction" )
    399399#endif
    400 #if HHI_INTER_VIEW_MOTION_PRED
     400#if H3D_IVMP
    401401  ("MultiviewMvPred",  m_uiMultiviewMvPredMode,    (UInt)0, "usage of predicted depth maps" )
    402402  ("MultiviewMvRegMode",        m_uiMultiviewMvRegMode,         (UInt)0, "regularization mode for multiview motion vectors" )
     
    974974  xConfirmPara    ( m_uiPredDepthMapGeneration >= 2 && !m_bUsingDepthMaps,            "PredDepthMapGen >= 2 requires CodeDepthMaps = 1" );
    975975#endif
    976 #if HHI_INTER_VIEW_MOTION_PRED
     976#if H3D_IVMP
    977977  xConfirmPara    ( m_uiMultiviewMvPredMode > 7,                                      "MultiviewMvPred must be less than or equal to 7" );
    978978  xConfirmPara    ( m_uiMultiviewMvPredMode > 0 && m_uiPredDepthMapGeneration == 0 ,  "MultiviewMvPred > 0 requires PredDepthMapGen > 0" );
  • branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncCfg.h

    r287 r292  
    233233  UInt      m_uiPredDepthMapGeneration;                       ///< using of (virtual) depth maps for texture coding
    234234#endif
    235 #if HHI_INTER_VIEW_MOTION_PRED
     235#if H3D_IVMP
    236236  UInt      m_uiMultiviewMvPredMode;                          ///< usage of predictors for multi-view mv prediction
    237237  UInt      m_uiMultiviewMvRegMode;                           ///< regularization for multiview motion vectors
  • branches/HTM-5.1-dev0/source/App/TAppEncoder/TAppEncTop.cpp

    r289 r292  
    235235    m_acTEncTopList[iViewIdx]->setPdmOffset                    (       m_cCameraData.getPdmOffset        () );
    236236#endif
    237 #if HHI_INTER_VIEW_MOTION_PRED
     237#if H3D_IVMP
    238238    m_acTEncTopList[iViewIdx]->setMultiviewMvPredMode          ( m_uiMultiviewMvPredMode );
    239239    m_acTEncTopList[iViewIdx]->setMultiviewMvRegMode           ( iViewIdx ? m_uiMultiviewMvRegMode       : 0   );
     
    605605      m_acTEncDepthTopList[iViewIdx]->setPredDepthMapGeneration       ( 0 );
    606606#endif
    607 #if HHI_INTER_VIEW_MOTION_PRED
     607#if H3D_IVMP
    608608      m_acTEncDepthTopList[iViewIdx]->setMultiviewMvPredMode          ( 0 );
    609609      m_acTEncDepthTopList[iViewIdx]->setMultiviewMvRegMode           ( 0 );
     
    741741  }
    742742
    743 #if HHI_INTER_VIEW_MOTION_PRED
     743#if H3D_IVMP
    744744  else if( m_uiMultiviewMvRegMode )
    745745  {
     
    828828      m_acTEncDepthTopList[iViewIdx]->create();
    829829    }
    830 #if HHI_INTER_VIEW_MOTION_PRED
     830#if H3D_IVMP
    831831    else if( m_uiMultiviewMvRegMode )
    832832    {
     
    975975  pcDepthPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
    976976
    977 #if HHI_INTER_VIEW_MOTION_PRED
     977#if H3D_IVMP
    978978  if( m_uiMultiviewMvRegMode )
    979979  {
     
    995995        m_acTVideoIOYuvInputFileList[iViewIdx]->read( pcPicYuvOrg, m_aiPad );
    996996     
    997 #if HHI_INTER_VIEW_MOTION_PRED
     997#if H3D_IVMP
    998998        if( m_uiMultiviewMvRegMode && iViewIdx )
    999999        {
     
    10021002#endif
    10031003
    1004 #if HHI_INTER_VIEW_MOTION_PRED
     1004#if H3D_IVMP
    10051005        m_acTEncTopList[iViewIdx]->initNewPic( pcPicYuvOrg, ( m_uiMultiviewMvRegMode && iViewIdx ? pcPdmDepthOrg : 0 ) );
    10061006#else
     
    11511151#endif
    11521152
    1153 #if HHI_INTERVIEW_SKIP || HHI_INTER_VIEW_MOTION_PRED || HHI_INTER_VIEW_RESIDUAL_PRED
     1153#if HHI_INTERVIEW_SKIP || H3D_IVMP || HHI_INTER_VIEW_RESIDUAL_PRED
    11541154      for( Int iViewIdx = 0; iViewIdx < m_iNumberOfViews; iViewIdx++ )
    11551155      {
Note: See TracChangeset for help on using the changeset viewer.