Changeset 108 in SHVCSoftware for branches/HM-10.0-dev-SHM/source/Lib/TLibCommon/TComSlice.h
- Timestamp:
- 2 Apr 2013, 22:50:17 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/Lib/TLibCommon/TComSlice.h
r103 r108 484 484 485 485 UInt m_numHrdParameters; 486 #if !VPS_RENAME 486 487 UInt m_maxNuhReservedZeroLayerId; 488 #endif 487 489 TComHRD* m_hrdParameters; 488 490 UInt* m_hrdOpSetIdx; 489 491 Bool* m_cprmsPresentFlag; 492 #if VPS_RENAME 493 UInt m_maxLayerId; 494 UInt m_numLayerSets; 495 Bool m_layerIdIncludedFlag[MAX_VPS_LAYER_SETS_PLUS1][MAX_VPS_LAYER_ID_PLUS1]; 496 #else 490 497 UInt m_numOpSets; 491 498 Bool m_layerIdIncludedFlag[MAX_VPS_OP_SETS_PLUS1][MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1]; 499 #endif 492 500 493 501 TComPTL m_pcPTL; … … 540 548 Void setNumHrdParameters(UInt v) { m_numHrdParameters = v; } 541 549 550 #if VPS_RENAME 551 UInt getMaxLayerId() { return m_maxLayerId; } 552 Void setMaxLayerId(UInt v) { m_maxLayerId = v; } 553 554 UInt getNumLayerSets() { return m_numLayerSets; } 555 Void setNumLayerSets(UInt v) { m_numLayerSets = v; } 556 #else 542 557 UInt getMaxNuhReservedZeroLayerId() { return m_maxNuhReservedZeroLayerId; } 543 558 Void setMaxNuhReservedZeroLayerId(UInt v) { m_maxNuhReservedZeroLayerId = v; } … … 545 560 UInt getMaxOpSets() { return m_numOpSets; } 546 561 Void setMaxOpSets(UInt v) { m_numOpSets = v; } 562 #endif 547 563 Bool getLayerIdIncludedFlag(UInt opsIdx, UInt id) { return m_layerIdIncludedFlag[opsIdx][id]; } 548 564 Void setLayerIdIncludedFlag(Bool v, UInt opsIdx, UInt id) { m_layerIdIncludedFlag[opsIdx][id] = v; }
Note: See TracChangeset for help on using the changeset viewer.