Changeset 1370 in 3DVCSoftware


Ignore:
Timestamp:
28 Oct 2015, 21:25:34 (8 years ago)
Author:
tech
Message:

Further fixes.

Location:
branches/HTM-15.2-dev/source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.2-dev/source/App/TAppDecoder/TAppDecCfg.cpp

    r1360 r1370  
    148148  }
    149149
     150#if NH_3D
     151  m_pchScaleOffsetFile = cfg_ScaleOffsetFile.empty() ? NULL : strdup(cfg_ScaleOffsetFile.c_str());
     152#endif
     153
    150154  if (m_bitstreamFileName.empty())
    151155  {
  • branches/HTM-15.2-dev/source/Lib/TLibCommon/TComPicYuv.cpp

    r1362 r1370  
    9191
    9292#if NH_3D_IV_MERGE
    93 // Check if m_iBaseUnitWidth and m_iBaseUnitHeight need to be derived here
     93  m_iCuWidth        = maxCUWidth;
     94  m_iCuHeight       = maxCUHeight;
     95
     96  m_iNumCuInWidth   = picWidth / m_iCuWidth;
     97  m_iNumCuInWidth  += ( picHeight % m_iCuWidth ) ? 1 : 0;
     98  // Check if m_iBaseUnitWidth and m_iBaseUnitHeight need to be derived here
    9499#endif
    95100
  • branches/HTM-15.2-dev/source/Lib/TLibCommon/TComRdCost.h

    r1360 r1370  
    130130     m_maximumDistortionForEarlyExit(std::numeric_limits<Distortion>::max()),
    131131     iSubShift(0)
    132   { }
     132  {
     133#if NH_3D_VSO
     134    // SAIT_VSO_EST_A0033
     135    pVirRec = NULL;
     136    pVirOrg = NULL;
     137    iStrideVir = 0;
     138#endif
     139#if NH_3D_SDC_INTER
     140    bUseSDCMRSAD = false;
     141#endif
     142  }
    133143};
    134144
  • branches/HTM-15.2-dev/source/Lib/TLibCommon/TComRom.cpp

    r1360 r1370  
    537537const Bool g_bEncDecTraceEnable  = true;
    538538const Bool g_bEncDecTraceDisable = false;
    539 Bool   g_HLSTraceEnable = true;
     539Bool   g_HLSTraceEnable = false;
    540540Bool   g_bJustDoIt = false;
    541541UInt64 g_nSymbolCounter = 0;
Note: See TracChangeset for help on using the changeset viewer.