Ignore:
Timestamp:
2 Apr 2013, 22:50:17 (12 years ago)
Author:
qualcomm
Message:

Rename VPS syntax elements (MACRO: VPS_RENAME)

Rename variables vps_max_nuh_reserved_zero_layer_id and vps_max_op_sets_minus1 to vps_max_layer_id and vps_num_layer_sets_minus1.

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

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

    r103 r108  
    484484
    485485  UInt        m_numHrdParameters;
     486#if !VPS_RENAME
    486487  UInt        m_maxNuhReservedZeroLayerId;
     488#endif
    487489  TComHRD*    m_hrdParameters;
    488490  UInt*       m_hrdOpSetIdx;
    489491  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
    490497  UInt        m_numOpSets;
    491498  Bool        m_layerIdIncludedFlag[MAX_VPS_OP_SETS_PLUS1][MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1];
     499#endif
    492500
    493501  TComPTL     m_pcPTL;
     
    540548  Void    setNumHrdParameters(UInt v)                           { m_numHrdParameters = v;    }
    541549
     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
    542557  UInt    getMaxNuhReservedZeroLayerId()                        { return m_maxNuhReservedZeroLayerId; }
    543558  Void    setMaxNuhReservedZeroLayerId(UInt v)                  { m_maxNuhReservedZeroLayerId = v;    }
     
    545560  UInt    getMaxOpSets()                                        { return m_numOpSets; }
    546561  Void    setMaxOpSets(UInt v)                                  { m_numOpSets = v;    }
     562#endif
    547563  Bool    getLayerIdIncludedFlag(UInt opsIdx, UInt id)          { return m_layerIdIncludedFlag[opsIdx][id]; }
    548564  Void    setLayerIdIncludedFlag(Bool v, UInt opsIdx, UInt id)  { m_layerIdIncludedFlag[opsIdx][id] = v;    }
Note: See TracChangeset for help on using the changeset viewer.