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

remove VPS member from picture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r1502 r1503  
    275275    }
    276276
    277     rpcPic->create( vps, sps, pps, true, m_layerId);
     277    rpcPic->create( sps, pps, true, m_layerId);
    278278#else //SVC_EXTENSION
    279279    rpcPic->create ( sps, pps, true);
     
    324324  }
    325325
    326   rpcPic->create( vps, sps, pps, true, m_layerId);
     326  rpcPic->create( sps, pps, true, m_layerId);
    327327#else  //SVC_EXTENSION
    328328  rpcPic->create ( sps, pps, true);
     
    520520        UInt refLayerId = 0;
    521521
    522         pBLPic->create( *vps, *sps, *pps, true, refLayerId);
     522        pBLPic->create( *sps, *pps, true, refLayerId);
    523523
    524524        // it is needed where the VPS is accessed through the slice
    525525        pBLPic->getSlice(0)->setVPS( vps );
    526         pBLPic->getPicSym()->inferSpsForNonHEVCBL();
     526        pBLPic->getPicSym()->inferSpsForNonHEVCBL(vps);
    527527        pBLPic->getSlice(0)->setSPS( &pBLPic->getPicSym()->getSPS() );
    528528      }
     
    22732273        m_cIlpPic[j] = new  TComPic;
    22742274
    2275         m_cIlpPic[j]->create(*vps, *sps, *slice->getPPS(), true, m_layerId);
     2275        m_cIlpPic[j]->create(*sps, *slice->getPPS(), true, m_layerId);
    22762276
    22772277        for (Int i=0; i<m_cIlpPic[j]->getPicSym()->getNumberOfCtusInFrame(); i++)
Note: See TracChangeset for help on using the changeset viewer.