Changeset 539 in 3DVCSoftware for branches/HTM-DEV-0.3-dev2/source/App/TAppEncoder
- Timestamp:
- 19 Jul 2013, 17:02:35 (12 years ago)
- Location:
- branches/HTM-DEV-0.3-dev2/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev2/source/App/TAppEncoder/TAppEncCfg.cpp
r537 r539 703 703 704 704 #endif //HHI_VSO 705 #if H_3D_QTLPC 706 ("QTL", m_bUseQTL , true , "Use depth Quadtree Limitation" ) 707 ("PC", m_bUsePC , true , "Use Predictive Coding with QTL" ) 708 #endif 705 709 #if H_3D_IV_MERGE 706 710 ("IvMvPred", m_ivMvPredFlag, true , "inter view motion prediction " ) … … 2261 2265 printf("WVSO:%d ", m_bUseWVSO ); 2262 2266 #endif 2267 #if H_3D_QTLPC 2268 printf("QTL:%d ", m_bUseQTL); 2269 printf("PC:%d " , m_bUsePC ); 2270 #endif 2263 2271 #if H_3D_IV_MERGE 2264 2272 printf("IvMvPred:%d ", m_ivMvPredFlag ); -
branches/HTM-DEV-0.3-dev2/source/App/TAppEncoder/TAppEncCfg.h
r537 r539 428 428 Bool m_useDLT; ///< flag for using DLT 429 429 #endif 430 #if H_3D_QTLPC 431 Bool m_bUseQTL; ///< flag for using depth QuadTree Limitation 432 Bool m_bUsePC; ///< flag for using Predictive Coding with QTL 433 #endif 430 434 #endif 431 435 // internal member functions -
branches/HTM-DEV-0.3-dev2/source/App/TAppEncoder/TAppEncTop.cpp
r537 r539 185 185 m_cTEncTop.setUseSDC ( isDepth ? m_useSDC : false ); 186 186 m_cTEncTop.setUseDLT ( isDepth ? m_useDLT : false ); 187 #endif 188 #if H_3D_QTLPC 189 m_cTEncTop.setUseQTL ( isDepth ? m_bUseQTL : false ); 190 m_cTEncTop.setUsePC ( isDepth ? m_bUsePC : false ); 187 191 #endif 188 192 #endif // H_3D
Note: See TracChangeset for help on using the changeset viewer.