Changeset 593 in SHVCSoftware for branches/SHM-5.0-dev/source/Lib/TLibCommon/TComSlice.h
- Timestamp:
- 2 Feb 2014, 04:51:29 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-5.0-dev/source/Lib/TLibCommon/TComSlice.h
r582 r593 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 3, ITU/ISO/IEC6 * Copyright (c) 2010-2014, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 714 714 UInt getNumReorderPics(UInt tLayer) { return m_numReorderPics[tLayer]; } 715 715 716 Void setMaxDecPicBuffering(UInt v, UInt tLayer) { m_uiMaxDecPicBuffering[tLayer] = v; }716 Void setMaxDecPicBuffering(UInt v, UInt tLayer) { assert(tLayer < MAX_TLAYER); m_uiMaxDecPicBuffering[tLayer] = v; } 717 717 UInt getMaxDecPicBuffering(UInt tLayer) { return m_uiMaxDecPicBuffering[tLayer]; } 718 718 … … 1320 1320 Int m_qpBDOffsetC; 1321 1321 1322 Bool m_useLossless;1323 1324 1322 UInt m_uiPCMBitDepthLuma; 1325 1323 UInt m_uiPCMBitDepthChroma; … … 1340 1338 Bool m_scalingListEnabledFlag; 1341 1339 Bool m_scalingListPresentFlag; 1342 1343 1340 TComScalingList* m_scalingList; //!< ScalingList class pointer 1344 1345 1341 UInt m_uiMaxDecPicBuffering[MAX_TLAYER]; 1346 1342 UInt m_uiMaxLatencyIncrease[MAX_TLAYER]; // Really max latency increase plus 1 (value 0 expresses no limit) … … 1456 1452 UInt getMaxTrSize () { return m_uiMaxTrSize; } 1457 1453 1458 // Tool list1459 Bool getUseLossless () { return m_useLossless; }1460 Void setUseLossless ( Bool b ) { m_useLossless = b; }1461 1462 1454 // AMP accuracy 1463 1455 Int getAMPAcc ( UInt uiDepth ) { return m_iAMPAcc[uiDepth]; } … … 1499 1491 #endif 1500 1492 TComScalingList* getScalingList () { return m_scalingList; } //!< get ScalingList class pointer in SPS 1501 1502 1493 UInt getMaxDecPicBuffering (UInt tlayer) { return m_uiMaxDecPicBuffering[tlayer]; } 1503 Void setMaxDecPicBuffering ( UInt ui, UInt tlayer ) { m_uiMaxDecPicBuffering[tlayer] = ui; }1494 Void setMaxDecPicBuffering ( UInt ui, UInt tlayer ) { assert(tlayer < MAX_TLAYER); m_uiMaxDecPicBuffering[tlayer] = ui; } 1504 1495 UInt getMaxLatencyIncrease (UInt tlayer) { return m_uiMaxLatencyIncrease[tlayer]; } 1505 1496 Void setMaxLatencyIncrease ( UInt ui , UInt tlayer) { m_uiMaxLatencyIncrease[tlayer] = ui; }
Note: See TracChangeset for help on using the changeset viewer.