Ignore:
Timestamp:
6 Nov 2015, 16:18:36 (8 years ago)
Author:
tech
Message:

Macro fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.2-dev/source/Lib/TLibEncoder/TEncCfg.h

    r1360 r1373  
    4646#include "TLibCommon/TComSlice.h"
    4747#include <assert.h>
    48 #if NH_3D
     48#if NH_3D_VSO
    4949#include "TAppCommon/TAppComCamPara.h"
    5050#include "TLibRenderer/TRenModSetupStrParser.h"
     
    469469#endif
    470470
    471 #if NH_3D
     471#if NH_3D_VSO
    472472  Bool      m_isDepth;
     473  Bool      m_isAuxDepth;
    473474
    474475  //====== Camera Parameters ======
    475476  TAppComCamPara* m_cameraParameters;
    476477 
    477 #if NH_3D_VSO
    478478  //====== View Synthesis Optimization ======
    479479  TRenModSetupStrParser* m_renderModelParameters;
     
    492492  Double    m_dDispCoeff;
    493493#endif
     494#if NH_3D
    494495
    495496  Bool      m_bUseIC;
     
    498499  Bool      m_useSDC;
    499500  Bool      m_useDLT;
     501#endif
     502#if NH_3D_QTL
    500503  Bool      m_bUseQTL;
     504#endif
     505#if NH_3D
    501506  Int       m_profileIdc;
    502 
    503507#endif
    504508public:
     
    511515  , m_viewId(-1)
    512516  , m_viewIndex(-1)
     517#if NH_3D_VSO
     518  , m_isDepth(false)
     519  , m_isAuxDepth(false)
     520  , m_bUseVSO(false)
     521#endif
    513522#if NH_3D
    514   , m_isDepth(false)
    515 #if NH_3D_VSO
    516   , m_bUseVSO(false)
    517 #endif
    518523  , m_profileIdc( -1 )
    519524#endif
     
    561566  Void      setViewIndex                     ( Int viewIndex  )   { m_viewIndex  = viewIndex;  }
    562567  Int       getViewIndex                     ()                   { return m_viewIndex;    }
    563 #if NH_3D
     568#if NH_3D_VSO
    564569  Void      setIsDepth                       ( Bool isDepth )   { m_isDepth = isDepth; }
    565570  Bool      getIsDepth                       ()                 { return m_isDepth; }
     571  Void      setIsAuxDepth                    ( Bool isAuxDepth ) { m_isAuxDepth = isAuxDepth; }
     572  Bool      getIsAuxDepth                       ()               { return m_isAuxDepth; }
     573
     574
    566575#endif
    567576#endif
     
    11881197  UInt      getSummaryVerboseness( ) const                           { return m_summaryVerboseness; }
    11891198
    1190 #if NH_3D
     1199#if NH_3D_VSO
    11911200  // Only flags that are not in the SPS3dExtension should go here.
    11921201  /// 3D Tools
     
    11941203 //==== CAMERA PARAMETERS  ==========
    11951204  Void      setCameraParameters             ( TAppComCamPara* c) { m_cameraParameters   = c; }
    1196 
    1197 #if NH_3D_VSO
    11981205 //==== VSO  ==========
    11991206  Void      setRenderModelParameters ( TRenModSetupStrParser* c ) { m_renderModelParameters = c; }
     
    12251232  Void      setDispCoeff                    ( Double  d )   { m_dDispCoeff  = d; }
    12261233#endif // NH_3D_VSO
    1227 
     1234#if NH_3D
    12281235  Bool      getUseDMM                       ()        { return m_useDMM; }
    12291236  Void      setUseDMM                       ( Bool b) { m_useDMM = b;    }
     
    12331240  Bool      getUseDLT                       ()        { return m_useDLT; }
    12341241  Void      setUseDLT                       ( Bool b) { m_useDLT = b;    }
    1235 
     1242#endif
     1243
     1244#if NH_3D_QTL
    12361245  Void      setUseQTL                       ( Bool b ) { m_bUseQTL = b;    }
    12371246  Bool      getUseQTL                       ()         { return m_bUseQTL; }
     1247#endif
     1248#if NH_3D
    12381249
    12391250  Void      setProfileIdc( Int a )    { assert( a == 1 || a == 6 || a == 8 ); m_profileIdc = a;  }
Note: See TracChangeset for help on using the changeset viewer.