Changeset 748 in 3DVCSoftware for branches/HTM-9.1-dev0-ZTE/source/Lib/TLibEncoder/TEncCfg.h
- Timestamp:
- 18 Dec 2013, 09:00:24 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-9.1-dev0-ZTE/source/Lib/TLibEncoder/TEncCfg.h
r724 r748 330 330 TComVPS m_cVPS; 331 331 #endif 332 333 #if DLT_DIFF_CODING_IN_PPS 334 TComDLT* m_cDLT; 335 #endif 336 332 337 Bool m_recalculateQPAccordingToLambda; ///< recalculate QP value according to the lambda value 333 338 Int m_activeParameterSetsSEIEnabled; ///< enable active parameter set SEI message … … 441 446 , m_isDepth(false) 442 447 , m_bUseVSO(false) 448 #endif 449 #if DLT_DIFF_CODING_IN_PPS 450 , m_cDLT(NULL) 443 451 #endif 444 452 #endif … … 867 875 TComVPS *getVPS() { return &m_cVPS; } 868 876 #endif 877 878 #if DLT_DIFF_CODING_IN_PPS 879 Void setDLT ( TComDLT *p ) { m_cDLT = p; } 880 TComDLT* getDLT () { return m_cDLT; } 881 #endif 882 869 883 Void setUseRecalculateQPAccordingToLambda ( Bool b ) { m_recalculateQPAccordingToLambda = b; } 870 884 Bool getUseRecalculateQPAccordingToLambda () { return m_recalculateQPAccordingToLambda; }
Note: See TracChangeset for help on using the changeset viewer.