Changeset 1574 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
20 Jun 2016, 19:14:44 (9 years ago)
Author:
seregin
Message:

port rev 4764

File:
1 edited

Legend:

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

    r1549 r1574  
    275275    }
    276276
     277#if REDUCED_ENCODER_MEMORY
     278    rpcPic->create ( sps, pps, false, true, m_layerId);
     279#else
    277280    rpcPic->create( sps, pps, true, m_layerId);
     281#endif
    278282#else //SVC_EXTENSION
     283#if REDUCED_ENCODER_MEMORY
     284    rpcPic->create ( sps, pps, false, true);
     285#else
    279286    rpcPic->create ( sps, pps, true);
     287#endif
    280288#endif //SVC_EXTENSION
    281289   
     
    323331    xSetRequireResamplingFlag( vps, sps, pps, rpcPic );
    324332  }
    325 
     333#if REDUCED_ENCODER_MEMORY
     334  rpcPic->create ( sps, pps, false, true, m_layerId);
     335#else
    326336  rpcPic->create( sps, pps, true, m_layerId);
     337#endif
    327338#else  //SVC_EXTENSION
     339#if REDUCED_ENCODER_MEMORY
     340  rpcPic->create ( sps, pps, false, true);
     341#else
    328342  rpcPic->create ( sps, pps, true);
     343#endif
    329344#endif //SVC_EXTENSION
    330345}
     
    522537        pBLPic->getPicSym()->inferSpsForNonHEVCBL(vps, sps->getMaxCUWidth(), sps->getMaxCUHeight());
    523538
     539#if REDUCED_ENCODER_MEMORY
     540        pBLPic->create( pBLPic->getPicSym()->getSPS(), *pps, true, true, refLayerId);
     541#else
    524542        pBLPic->create( pBLPic->getPicSym()->getSPS(), *pps, true, refLayerId);
     543#endif
    525544
    526545        // it is needed where the VPS is accessed through the slice
     
    22782297        m_cIlpPic[j] = new  TComPic;
    22792298
     2299#if REDUCED_ENCODER_MEMORY
     2300        m_cIlpPic[j]->create(*sps, *pps, true, false, m_layerId);
     2301#else
    22802302        m_cIlpPic[j]->create(*sps, *pps, true, m_layerId);
     2303#endif
    22812304
    22822305        for (Int i=0; i<m_cIlpPic[j]->getPicSym()->getNumberOfCtusInFrame(); i++)
Note: See TracChangeset for help on using the changeset viewer.