Ignore:
Timestamp:
20 Mar 2013, 22:00:39 (12 years ago)
Author:
seregin
Message:

splitting parameter sets for layers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HM-10.0-dev-SHM/source/Lib/TLibCommon/TComSlice.h

    r76 r90  
    16761676  //! activate a PPS and depending on isIDR parameter also SPS and VPS
    16771677  //! \returns true, if activation is successful
    1678 #if SVC_EXTENSION
    1679   Bool activatePPS(Int ppsId, Bool isIDR, UInt layerId);
    1680 #else
    16811678  Bool activatePPS(Int ppsId, Bool isIDR);
    1682 #endif
    16831679
    16841680  TComVPS* getActiveVPS(){ return m_vpsMap.getPS(m_activeVPSId); };
     
    16871683
    16881684protected:
    1689  
     1685
     1686#if SVC_EXTENSION
     1687  static ParameterSetMap<TComVPS> m_vpsMap;
     1688#else
    16901689  ParameterSetMap<TComVPS> m_vpsMap;
     1690#endif
    16911691  ParameterSetMap<TComSPS> m_spsMap;
    16921692  ParameterSetMap<TComPPS> m_ppsMap;
    16931693
     1694#if SVC_EXTENSION
     1695  static Int m_activeVPSId;
     1696#else
    16941697  Int m_activeVPSId;
     1698#endif
    16951699  Int m_activeSPSId;
    16961700  Int m_activePPSId;
Note: See TracChangeset for help on using the changeset viewer.