Changeset 6 in SHVCSoftware for trunk/source/Lib/TLibDecoder


Ignore:
Timestamp:
8 Nov 2012, 20:54:05 (12 years ago)
Author:
seregin
Message:

Correct IntraBL cost and fix for couple of compiler warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibDecoder/TDecTop.cpp

    r2 r6  
    159159        m_cIlpPic[j] = new  TComPic;
    160160        //m_cIlpPic[j]->createWithOutYuv(m_iSourceWidth, m_iSourceHeight, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth, &m_cSPS, true);
     161#if SVC_UPSAMPLING
    161162        m_cIlpPic[j]->create(pcSPS->getPicWidthInLumaSamples(), pcSPS->getPicHeightInLumaSamples(), g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth, pcSPS, true);
     163#else
     164        m_cIlpPic[j]->create(pcSPS->getPicWidthInLumaSamples(), pcSPS->getPicHeightInLumaSamples(), g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth, true);
     165#endif
    162166        for (Int i=0; i<m_cIlpPic[j]->getPicSym()->getNumberOfCUsInFrame(); i++)
    163167        {
Note: See TracChangeset for help on using the changeset viewer.