Changeset 54 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncCfg.h
- Timestamp:
- 2 Mar 2013, 09:25:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncCfg.h
r51 r54 298 298 299 299 Bool m_useStrongIntraSmoothing; ///< enable the use of strong intra smoothing (bi_linear interpolation) for 32x32 blocks when reference samples are flat. 300 #if SVC_EXTENSION 301 UInt m_layerId; 302 UInt m_numLayer; 303 #endif 304 #if REF_IDX_FRAMEWORK 305 Int m_elRapSliceBEnabled; 306 #endif 300 307 301 308 public: … … 692 699 Void setFrameOnlyConstraintFlag(Bool b) { m_frameOnlyConstraintFlag = b; } 693 700 #endif 701 702 #if SVC_EXTENSION 703 UInt getLayerId () { return m_layerId; } 704 Void setLayerId (UInt layer) { m_layerId = layer; } 705 UInt getNumLayer () { return m_numLayer; } 706 Void setNumLayer (UInt uiNum) { m_numLayer = uiNum; } 707 Void setConformanceMode (Int mode) { m_conformanceMode = mode; } 708 Void setConformanceWindow(Window& conformanceWindow ) { m_conformanceWindow = conformanceWindow; } 709 #endif 710 #if REF_IDX_FRAMEWORK 711 Void setElRapSliceTypeB(Int bEnabled) {m_elRapSliceBEnabled = bEnabled;} 712 Int getElRapSliceTypeB() {return m_elRapSliceBEnabled;} 713 #endif 694 714 }; 695 715
Note: See TracChangeset for help on using the changeset viewer.