Changeset 1503 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder


Ignore:
Timestamp:
11 Dec 2015, 19:35:23 (9 years ago)
Author:
seregin
Message:

remove VPS member from picture

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

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncPic.cpp

    r1502 r1503  
    127127Void TEncPic::create( const TComVPS& vps, const TComSPS &sps, const TComPPS &pps, UInt uiMaxAdaptiveQPDepth, Bool bIsVirtual, const UInt layerId )
    128128{
    129   TComPic::create( vps, sps, pps, bIsVirtual, layerId );
     129  TComPic::create( sps, pps, bIsVirtual, layerId );
    130130#else
    131131Void TEncPic::create( const TComSPS &sps, const TComPPS &pps, UInt uiMaxAdaptiveQPDepth, Bool bIsVirtual )
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncTop.cpp

    r1502 r1503  
    794794      }
    795795
    796       rpcPic->create( m_cVPS, m_cSPS, m_cPPS, false, m_layerId );
     796      rpcPic->create( m_cSPS, m_cPPS, false, m_layerId );
    797797#else  //SVC_EXTENSION
    798798      rpcPic->create( m_cSPS, m_cPPS, false );
     
    16871687      {
    16881688        m_cIlpPic[j] = new TComPic;
    1689         m_cIlpPic[j]->create(m_cVPS, m_cSPS, m_cPPS, true, m_layerId);
     1689        m_cIlpPic[j]->create(m_cSPS, m_cPPS, true, m_layerId);
    16901690        for (Int i=0; i<m_cIlpPic[j]->getPicSym()->getNumberOfCtusInFrame(); i++)
    16911691        {
Note: See TracChangeset for help on using the changeset viewer.