Changeset 1503 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder
- Timestamp:
- 11 Dec 2015, 19:35:23 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncPic.cpp
r1502 r1503 127 127 Void TEncPic::create( const TComVPS& vps, const TComSPS &sps, const TComPPS &pps, UInt uiMaxAdaptiveQPDepth, Bool bIsVirtual, const UInt layerId ) 128 128 { 129 TComPic::create( vps,sps, pps, bIsVirtual, layerId );129 TComPic::create( sps, pps, bIsVirtual, layerId ); 130 130 #else 131 131 Void TEncPic::create( const TComSPS &sps, const TComPPS &pps, UInt uiMaxAdaptiveQPDepth, Bool bIsVirtual ) -
branches/SHM-dev/source/Lib/TLibEncoder/TEncTop.cpp
r1502 r1503 794 794 } 795 795 796 rpcPic->create( m_c VPS, m_cSPS, m_cPPS, false, m_layerId );796 rpcPic->create( m_cSPS, m_cPPS, false, m_layerId ); 797 797 #else //SVC_EXTENSION 798 798 rpcPic->create( m_cSPS, m_cPPS, false ); … … 1687 1687 { 1688 1688 m_cIlpPic[j] = new TComPic; 1689 m_cIlpPic[j]->create(m_c VPS, m_cSPS, m_cPPS, true, m_layerId);1689 m_cIlpPic[j]->create(m_cSPS, m_cPPS, true, m_layerId); 1690 1690 for (Int i=0; i<m_cIlpPic[j]->getPicSym()->getNumberOfCtusInFrame(); i++) 1691 1691 {
Note: See TracChangeset for help on using the changeset viewer.