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


Ignore:
Timestamp:
22 Nov 2013, 00:12:45 (11 years ago)
Author:
interdigital
Message:

Integrated JCTVC-O0092/0094/0096

  1. Implement O1008 SHVC text pseudo code for direct/indirect reference layers detection
  2. constraint on the maximum number of reference layers
  3. constraint on the layer id of SPS/PPS
  4. identify SPS rep format with index into the list of rep format in VPS
  5. specify default direct dependency type in VPS
Location:
branches/SHM-4.1-dev/source/Lib/TLibCommon
Files:
3 edited

Legend:

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

    r494 r504  
    18341834  TComVPS *vps = getVPS();
    18351835  UInt retVal, layerId = getLayerId();
     1836#if O0096_REP_FORMAT_INDEX
     1837  if ( layerId == 0 )
     1838  {
     1839    retVal = sps->getPicWidthInLumaSamples();
     1840  }
     1841  else
     1842  {
     1843    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getPicWidthVpsInLumaSamples();
     1844  }
     1845#else
    18361846  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
    18371847  {
     
    18421852    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getPicWidthVpsInLumaSamples();
    18431853  }
     1854#endif
    18441855  return retVal;
    18451856}
     
    18491860  TComVPS *vps = getVPS();
    18501861  UInt retVal, layerId = getLayerId();
     1862#if O0096_REP_FORMAT_INDEX
     1863  if( layerId == 0 )
     1864  {
     1865    retVal = sps->getPicHeightInLumaSamples();
     1866  }
     1867  else
     1868  {
     1869    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getPicHeightVpsInLumaSamples();
     1870  }
     1871#else
    18511872  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
    18521873  {
     
    18571878    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getPicHeightVpsInLumaSamples();
    18581879  }
     1880#endif
    18591881  return retVal;
    18601882}
     
    18731895  UInt retVal, layerId = getLayerId();
    18741896#endif
     1897#if O0096_REP_FORMAT_INDEX
     1898  if( layerId == 0 )
     1899  {
     1900    retVal = sps->getChromaFormatIdc();
     1901  }
     1902  else
     1903  {
     1904    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getChromaFormatVpsIdc();
     1905  }
     1906#else
    18751907  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
    18761908  {
     
    18811913    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getChromaFormatVpsIdc();
    18821914  }
     1915#endif
    18831916  return retVal;
    18841917}
     
    18881921  TComVPS *vps = getVPS();
    18891922  UInt retVal, layerId = getLayerId();
     1923#if O0096_REP_FORMAT_INDEX
     1924  if( layerId == 0 )
     1925  {
     1926    retVal = sps->getBitDepthY();
     1927  }
     1928  else
     1929  {
     1930    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getBitDepthVpsLuma();
     1931  }
     1932#else
    18901933  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
    18911934  {
     
    18961939    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getBitDepthVpsLuma();
    18971940  }
     1941#endif
    18981942  return retVal;
    18991943}
     
    19031947  TComVPS *vps = getVPS();
    19041948  UInt retVal, layerId = getLayerId();
     1949#if O0096_REP_FORMAT_INDEX
     1950  if( layerId == 0 )
     1951  {
     1952    retVal = sps->getBitDepthC();
     1953  }
     1954  else
     1955  {
     1956    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getBitDepthVpsChroma();
     1957  }
     1958#else
    19051959  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
    19061960  {
     
    19111965    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getBitDepthVpsChroma();
    19121966  }
     1967#endif
    19131968  return retVal;
    19141969}
     
    20652120  ::memset(m_viewIdVal, 0, sizeof(m_viewIdVal));
    20662121#endif
     2122#if O0092_0094_DEPENDENCY_CONSTRAINT
     2123  for (Int i = 0; i < MAX_NUM_LAYER_IDS; i++)
     2124  {
     2125    m_numberRefLayers[i] = 0;
     2126    for (Int j = 0; j < MAX_NUM_LAYER_IDS; j++)
     2127    {
     2128      m_recursiveRefLayerFlag[i][j] = 0;
     2129    }
     2130  }
     2131#endif
    20672132}
    20682133#else
     
    21362201  }
    21372202  return false;       
     2203}
     2204#endif
     2205
     2206#if O0092_0094_DEPENDENCY_CONSTRAINT
     2207Void TComVPS::setRefLayersFlags(Int currLayerId)
     2208{
     2209  for (Int i = 0; i < getNumDirectRefLayers(currLayerId); i++)
     2210  {
     2211    UInt refLayerId = getRefLayerId(currLayerId, i);
     2212    setRecursiveRefLayerFlag(currLayerId, refLayerId, true);
     2213    for (Int k = 0; k < MAX_NUM_LAYER_IDS; k++)
     2214    {
     2215      setRecursiveRefLayerFlag(currLayerId, k, (getRecursiveRefLayerFlag(currLayerId, k) | getRecursiveRefLayerFlag(refLayerId, k)));
     2216    }
     2217  }
     2218}
     2219
     2220Void TComVPS::setNumRefLayers(Int currLayerId)
     2221{
     2222  for (Int i = 0; i <= getMaxLayers(); i++)
     2223  {
     2224    UInt iNuhLId = getLayerIdInNuh(i);
     2225    setRefLayersFlags(iNuhLId);
     2226    for (UInt j = 0; j < MAX_NUM_LAYER_IDS; j++)
     2227    {
     2228      m_numberRefLayers[iNuhLId] += (getRecursiveRefLayerFlag(iNuhLId, j) == true ? 1 : 0);
     2229    }
     2230  }
    21382231}
    21392232#endif
     
    22242317#if REPN_FORMAT_IN_VPS
    22252318, m_updateRepFormatFlag       (false)
     2319#if O0096_REP_FORMAT_INDEX
     2320, m_updateRepFormatIndex      (0)
     2321#endif
    22262322#endif
    22272323#endif //SVC_EXTENSION
  • branches/SHM-4.1-dev/source/Lib/TLibCommon/TComSlice.h

    r502 r504  
    563563#if M0457_PREDICTION_INDICATIONS
    564564  UInt       m_directDepTypeLen;
     565#if O0096_DEFAULT_DEPENDENCY_TYPE
     566  Bool       m_defaultDirectDependencyTypeFlag;
     567  UInt       m_defaultDirectDependencyType;
     568#endif
    565569  UInt       m_directDependencyType[MAX_VPS_LAYER_ID_PLUS1][MAX_VPS_LAYER_ID_PLUS1];
    566570#endif
     
    626630  Bool       m_phaseAlignFlag;
    627631#endif
     632
     633#if O0092_0094_DEPENDENCY_CONSTRAINT
     634  Int        m_numberRefLayers[MAX_NUM_LAYER_IDS];  // number of direct and indirect reference layers of a coding layer
     635  Bool       m_recursiveRefLayerFlag[MAX_NUM_LAYER_IDS][MAX_NUM_LAYER_IDS];  // flag to indicate if j-th layer is a direct or indirect reference layer of i-th layer
     636#endif
    628637#endif //SVC_EXTENSION
    629638public:
     
    698707#endif
    699708
     709#if O0092_0094_DEPENDENCY_CONSTRAINT
     710  Void    setRefLayersFlags(Int currLayerId);
     711  Bool    getRecursiveRefLayerFlag(Int currLayerId, Int refLayerId)              { return m_recursiveRefLayerFlag[currLayerId][refLayerId];}
     712  Void    setRecursiveRefLayerFlag(Int currLayerId, Int refLayerId, Bool x)      { m_recursiveRefLayerFlag[currLayerId][refLayerId] = x;   }
     713  Int     getNumRefLayers(Int currLayerId)                                       { return m_numberRefLayers[currLayerId];                  }
     714  Void    setNumRefLayers(Int currLayerId);
     715#endif
    700716#if VPS_RENAME
    701717  UInt    getMaxLayerId()                                       { return m_maxLayerId; }
     
    772788  UInt   getDirectDepTypeLen()                                                  { return m_directDepTypeLen;                              }
    773789  Void   setDirectDepTypeLen(UInt x)                                            { m_directDepTypeLen = x;                                 }
    774 
     790#if O0096_DEFAULT_DEPENDENCY_TYPE
     791  Bool   getDefaultDirectDependencyTypeFlag()                                   { return m_defaultDirectDependencyTypeFlag;               }
     792  Void   setDefaultDirectDependecyTypeFlag(Bool x)                              { m_defaultDirectDependencyTypeFlag = x;                  }
     793  UInt   getDefaultDirectDependencyType()                                       { return m_defaultDirectDependencyType;                   }
     794  Void   setDefaultDirectDependecyType(UInt x)                                  { m_defaultDirectDependencyType = x;                      }
     795#endif
    775796  UInt   getDirectDependencyType(Int currLayerId, Int refLayerId)               { return m_directDependencyType[currLayerId][refLayerId]; }
    776797  Void   setDirectDependencyType(Int currLayerId, Int refLayerId, UInt x)       { m_directDependencyType[currLayerId][refLayerId] = x;    }
     
    12091230#if REPN_FORMAT_IN_VPS
    12101231  Bool m_updateRepFormatFlag;
     1232#if O0096_REP_FORMAT_INDEX
     1233  UInt m_updateRepFormatIndex;
     1234#endif
    12111235#endif
    12121236#endif //SVC_EXTENSION
     
    13921416  Bool     getUpdateRepFormatFlag()       { return m_updateRepFormatFlag; }
    13931417  Void     setUpdateRepFormatFlag(Bool x) { m_updateRepFormatFlag = x;    }
     1418#if O0096_REP_FORMAT_INDEX
     1419  Int      getUpdateRepFormatIndex()      { return m_updateRepFormatIndex; }
     1420  Void     setUpdateRepFormatIndex(UInt index)  { m_updateRepFormatIndex = index; }
     1421#endif
    13941422#endif
    13951423#endif //SVC_EXTENSION
  • branches/SHM-4.1-dev/source/Lib/TLibCommon/TypeDef.h

    r502 r504  
    168168#define O0062_POC_LSB_NOT_PRESENT_FLAG   1      ///< JCTVC-O0062: signal poc_lsb_not_present_flag for each layer in VPS extension
    169169#define SHM_FIX7                         1      ///< fix for SHVC WD ticket #7
     170
     171#define O0092_0094_DEPENDENCY_CONSTRAINT 1      ///< JCTVC-O0092: constraint on the layer_id of SPS/PPS
     172#if O0092_0094_DEPENDENCY_CONSTRAINT
     173#define MAX_REF_LAYERS                   7
     174#endif
     175#define O0096_REP_FORMAT_INDEX           1      ///< JCTVC-O0096: identify SPS rep_format() with an index into the lists of formats in VPS extension.
     176#define O0096_DEFAULT_DEPENDENCY_TYPE    1      ///< JCTVC-O0096: specify default dependency type for all direct reference layers
    170177
    171178#else
Note: See TracChangeset for help on using the changeset viewer.