Changeset 1464 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon
- Timestamp:
- 25 Aug 2015, 19:35:49 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibCommon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp
r1455 r1464 2063 2063 for ( Int i = 0; i < MAX_TLAYER; i++ ) 2064 2064 { 2065 m_uiMaxLatencyIncrease [i] = 0;2065 m_uiMaxLatencyIncreasePlus1[i] = 0; 2066 2066 m_uiMaxDecPicBuffering[i] = 1; 2067 2067 m_numReorderPics[i] = 0; -
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r1442 r1464 1424 1424 TComScalingList m_scalingList; 1425 1425 UInt m_uiMaxDecPicBuffering[MAX_TLAYER]; 1426 UInt m_uiMaxLatencyIncrease [MAX_TLAYER]; // Really max latency increase plus 1 (value 0 expresses no limit)1426 UInt m_uiMaxLatencyIncreasePlus1[MAX_TLAYER]; 1427 1427 1428 1428 Bool m_useStrongIntraSmoothing; … … 1569 1569 UInt getMaxDecPicBuffering(UInt tlayer) const { return m_uiMaxDecPicBuffering[tlayer]; } 1570 1570 Void setMaxDecPicBuffering( UInt ui, UInt tlayer ) { assert(tlayer < MAX_TLAYER); m_uiMaxDecPicBuffering[tlayer] = ui; } 1571 UInt getMaxLatencyIncrease (UInt tlayer) const { return m_uiMaxLatencyIncrease[tlayer];}1572 Void setMaxLatencyIncrease ( UInt ui , UInt tlayer) { m_uiMaxLatencyIncrease[tlayer] = ui;}1571 UInt getMaxLatencyIncreasePlus1(UInt tlayer) const { return m_uiMaxLatencyIncreasePlus1[tlayer]; } 1572 Void setMaxLatencyIncreasePlus1( UInt ui , UInt tlayer) { m_uiMaxLatencyIncreasePlus1[tlayer] = ui; } 1573 1573 1574 1574 Void setUseStrongIntraSmoothing(Bool bVal) { m_useStrongIntraSmoothing = bVal; }
Note: See TracChangeset for help on using the changeset viewer.