Changeset 983 in 3DVCSoftware for branches/HTM-11.2-dev3-MediaTek/source/App


Ignore:
Timestamp:
11 Jul 2014, 03:49:39 (10 years ago)
Author:
mediatek-htm
Message:

Integration of Single Depth Mode proposed in JCT3V-I0095.
The MACRO is "MTK_SINGLE_DEPTH_MODE_I0095".

By Yi-Wen Chen (yiwen.chen@…)

Location:
branches/HTM-11.2-dev3-MediaTek/source/App/TAppEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-11.2-dev3-MediaTek/source/App/TAppEncoder/TAppEncCfg.cpp

    r976 r983  
    380380  ("SDC",                   m_useSDC,           true,  "Simplified depth coding")
    381381  ("DLT",                   m_useDLT,           true,  "Depth lookup table")
     382#endif
     383#if MTK_SINGLE_DEPTH_MODE_I0095
     384  ("SingleDepthMode",    m_useSingleDepthMode, true, "Single depth mode")                         
    382385#endif
    383386#endif
     
    25232526  printf("DLT:%d ", m_useDLT );
    25242527#endif
     2528#if MTK_SINGLE_DEPTH_MODE_I0095
     2529  printf("SingleDepthMode:%d ",    m_useSingleDepthMode);
     2530#endif
    25252531#if H_3D_INTER_SDC
    25262532  printf( "interSDC:%d ", m_bDepthInterSDCFlag ? 1 : 0 );
  • branches/HTM-11.2-dev3-MediaTek/source/App/TAppEncoder/TAppEncCfg.h

    r976 r983  
    473473  Bool      m_useDLT;                                        ///< flag for using DLT
    474474#endif
     475#if MTK_SINGLE_DEPTH_MODE_I0095
     476  Bool     m_useSingleDepthMode;                          ///< flag for using single depth mode
     477#endif
    475478#if H_3D_QTLPC
    476479  Bool      m_bUseQTL;                                        ///< flag for using depth QuadTree Limitation
  • branches/HTM-11.2-dev3-MediaTek/source/App/TAppEncoder/TAppEncTop.cpp

    r976 r983  
    201201    m_cTEncTop.setUseSDC                       ( isDepth ? m_useSDC               : false );
    202202    m_cTEncTop.setUseDLT                       ( isDepth ? m_useDLT               : false );
     203#endif
     204#if MTK_SINGLE_DEPTH_MODE_I0095
     205    m_cTEncTop.setUseSingleDepthMode           ( isDepth ? m_useSingleDepthMode   : false );
    203206#endif
    204207#if H_3D_QTLPC
Note: See TracChangeset for help on using the changeset viewer.