Changeset 514 in SHVCSoftware for branches/SHM-4.1-dev/source/Lib/TLibCommon


Ignore:
Timestamp:
13 Dec 2013, 23:00:20 (11 years ago)
Author:
sharp
Message:
  1. Deshpande (Sharp) <sdeshpande@…>

-Signal max temporal sub-layers for each layer in the VPS, with a gating flag, from JCTVC-O0120.
-IL RPS derivation based on max temporal sub-layers per layer in VPS from JCTVC-O0120.

Location:
branches/SHM-4.1-dev/source/Lib/TLibCommon
Files:
2 edited

Legend:

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

    r512 r514  
    594594  Bool       m_maxTidRefPresentFlag;
    595595#endif
     596#if VPS_TSLAYERS
     597  Bool       m_maxTSLayersPresentFlag;
     598  UInt       m_maxTSLayerMinus1[MAX_VPS_LAYER_ID_PLUS1 - 1];
     599#endif
    596600#if M0040_ADAPTIVE_RESOLUTION_CHANGE
    597601  Bool       m_singleLayerForNonIrapFlag;
     
    840844  Void   setMaxTidRefPresentFlag(Bool x)                            { m_maxTidRefPresentFlag = x;}
    841845#endif
     846#if VPS_TSLAYERS
     847    Bool   getMaxTSLayersPresentFlag()                                  { return m_maxTSLayersPresentFlag ;}
     848    Void   setMaxTSLayersPresentFlag(Bool x)                            { m_maxTSLayersPresentFlag = x;}
     849    UInt   getMaxTSLayersMinus1(Int layerId)                            { return m_maxTSLayerMinus1[layerId];}
     850    Void   setMaxTSLayersMinus1(Int layerId, UInt maxTSublayer)         { m_maxTSLayerMinus1[layerId] = maxTSublayer;}
     851#endif
    842852#if M0040_ADAPTIVE_RESOLUTION_CHANGE
    843853  Bool   getSingleLayerForNonIrapFlag()                             { return m_singleLayerForNonIrapFlag; }
  • branches/SHM-4.1-dev/source/Lib/TLibCommon/TypeDef.h

    r512 r514  
    131131#define O0225_MAX_TID_FOR_REF_LAYERS     1
    132132#define O0225_TID_BASED_IL_RPS_DERIV     1
     133
     134#define VPS_TSLAYERS                     1      ///< JCTVC-O0120 signal max temporal sub-layers for each layer
     135#define TSLAYERS_IL_RPS                  1      ///< JCTVC-O0120 IL RPS based on max temporal sub-layers
    133136#endif
    134137#if REF_IDX_MFM
Note: See TracChangeset for help on using the changeset viewer.