Changeset 1575 in SHVCSoftware


Ignore:
Timestamp:
20 Jun 2016, 19:33:17 (8 years ago)
Author:
seregin
Message:

fix memory allocation for ILRP and REDUCED_ENCODER_MEMORY

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

Legend:

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

    r1574 r1575  
    22982298
    22992299#if REDUCED_ENCODER_MEMORY
    2300         m_cIlpPic[j]->create(*sps, *pps, true, false, m_layerId);
     2300        m_cIlpPic[j]->create(*sps, *pps, true, true, m_layerId);
    23012301#else
    23022302        m_cIlpPic[j]->create(*sps, *pps, true, m_layerId);
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncTop.cpp

    r1574 r1575  
    17571757        m_cIlpPic[j] = new TComPic;
    17581758#if REDUCED_ENCODER_MEMORY
    1759         m_cIlpPic[j]->create(m_cSPS, m_cPPS, true, false, m_layerId);
     1759        m_cIlpPic[j]->create(m_cSPS, m_cPPS, true, true, m_layerId);
    17601760#else
    17611761        m_cIlpPic[j]->create(m_cSPS, m_cPPS, true, m_layerId);
Note: See TracChangeset for help on using the changeset viewer.