Ignore:
Timestamp:
6 Jun 2013, 11:46:05 (11 years ago)
Author:
hhi
Message:

Integation of depth intra methods in macro H_3D_DIM, including:

  • DMM coding modes in H_3D_DIM_DMM.
  • RBC coding mode in H_3D_DIM_RBC.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev1/source/Lib/TLibEncoder/TEncCfg.h

    r446 r459  
    394394  Bool      m_bUseEstimatedVSD;
    395395  Double    m_dDispCoeff;
     396
     397  //====== Depth Intra Modes ======
     398#if H_3D_DIM
     399  Bool      m_useDMM;
     400  Bool      m_useRBC;
     401  Bool      m_useSDC;
     402  Bool      m_useDLT;
     403#endif
    396404#endif
    397405
     
    926934  Void      setDispCoeff                    ( Double  d )   { m_dDispCoeff  = d; }
    927935#endif // H_3D_VSO
     936
     937 //==== DIM  ==========
     938#if H_3D_DIM
     939  Bool      getUseDMM                       ()        { return m_useDMM; }
     940  Void      setUseDMM                       ( Bool b) { m_useDMM = b;    }
     941  Bool      getUseRBC                       ()        { return m_useRBC; }
     942  Void      setUseRBC                       ( Bool b) { m_useRBC = b;    }
     943  Bool      getUseSDC                       ()        { return m_useSDC; }
     944  Void      setUseSDC                       ( Bool b) { m_useSDC = b;    }
     945  Bool      getUseDLT                       ()        { return m_useDLT; }
     946  Void      setUseDLT                       ( Bool b) { m_useDLT = b;    }
     947#endif
    928948#endif // H_3D
    929949};
Note: See TracChangeset for help on using the changeset viewer.