Changeset 622 in 3DVCSoftware for trunk/source/Lib/TLibExtractor


Ignore:
Timestamp:
11 Sep 2013, 14:40:25 (11 years ago)
Author:
tech
Message:

Merged 8.0-dev0@621 (MV-HEVC 5 HLS).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibExtractor/TExtrTop.cpp

    r608 r622  
    100100Void TExtrTop::dumpVpsInfo( std::ostream& rcVpsInfoHandle )
    101101{
     102#if H_MV5
     103  rcVpsInfoHandle << "MaxLayers      = " << m_cVPS.getMaxLayersMinus1() + 1 << std::endl;
     104  rcVpsInfoHandle << "MaxNuhLayerId  = " << m_cVPS.getVpsMaxLayerId() << std::endl;                     
     105
     106  for ( Int layerIdxInVps = 0; layerIdxInVps <= m_cVPS.getMaxLayersMinus1(); layerIdxInVps++ )
     107  { 
     108    Int layerId = m_cVPS.getLayerIdInNuh( layerIdxInVps );
     109    rcVpsInfoHandle << "LayerIdxInVps  = " << layerIdxInVps                       << std::endl;
     110    rcVpsInfoHandle << "LayerIdInNuh   = " << layerId                             << std::endl;
     111    rcVpsInfoHandle << "ViewOrderIndex = " << m_cVPS.getViewIndex     ( layerId ) << std::endl;     
     112#if H_3D   
     113    rcVpsInfoHandle << "DepthFlag      = " << m_cVPS.getDepthId       ( layerId ) << std::endl;     
     114#endif
     115    rcVpsInfoHandle << "ViewId         = " << m_cVPS.getViewId        ( layerId ) << std::endl;     
     116#else
    102117  rcVpsInfoHandle << "MaxLayers = "     << m_cVPS.getMaxLayers()     << std::endl;
    103118  rcVpsInfoHandle << "MaxNuhLayerId = " << m_cVPS.getVpsMaxLayerId() << std::endl;
     
    112127    rcVpsInfoHandle << "DepthFlag = "      << m_cVPS.getDepthId     ( layerIdxInVps ) << std::endl;     
    113128#endif
     129#endif
    114130  }
    115131}
Note: See TracChangeset for help on using the changeset viewer.