Changeset 983 in 3DVCSoftware for branches/HTM-11.2-dev3-MediaTek/source/App
- Timestamp:
- 11 Jul 2014, 03:49:39 (10 years ago)
- 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 380 380 ("SDC", m_useSDC, true, "Simplified depth coding") 381 381 ("DLT", m_useDLT, true, "Depth lookup table") 382 #endif 383 #if MTK_SINGLE_DEPTH_MODE_I0095 384 ("SingleDepthMode", m_useSingleDepthMode, true, "Single depth mode") 382 385 #endif 383 386 #endif … … 2523 2526 printf("DLT:%d ", m_useDLT ); 2524 2527 #endif 2528 #if MTK_SINGLE_DEPTH_MODE_I0095 2529 printf("SingleDepthMode:%d ", m_useSingleDepthMode); 2530 #endif 2525 2531 #if H_3D_INTER_SDC 2526 2532 printf( "interSDC:%d ", m_bDepthInterSDCFlag ? 1 : 0 ); -
branches/HTM-11.2-dev3-MediaTek/source/App/TAppEncoder/TAppEncCfg.h
r976 r983 473 473 Bool m_useDLT; ///< flag for using DLT 474 474 #endif 475 #if MTK_SINGLE_DEPTH_MODE_I0095 476 Bool m_useSingleDepthMode; ///< flag for using single depth mode 477 #endif 475 478 #if H_3D_QTLPC 476 479 Bool m_bUseQTL; ///< flag for using depth QuadTree Limitation -
branches/HTM-11.2-dev3-MediaTek/source/App/TAppEncoder/TAppEncTop.cpp
r976 r983 201 201 m_cTEncTop.setUseSDC ( isDepth ? m_useSDC : false ); 202 202 m_cTEncTop.setUseDLT ( isDepth ? m_useDLT : false ); 203 #endif 204 #if MTK_SINGLE_DEPTH_MODE_I0095 205 m_cTEncTop.setUseSingleDepthMode ( isDepth ? m_useSingleDepthMode : false ); 203 206 #endif 204 207 #if H_3D_QTLPC
Note: See TracChangeset for help on using the changeset viewer.