Changeset 1370 in 3DVCSoftware
- Timestamp:
- 28 Oct 2015, 21:25:34 (9 years ago)
- 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 148 148 } 149 149 150 #if NH_3D 151 m_pchScaleOffsetFile = cfg_ScaleOffsetFile.empty() ? NULL : strdup(cfg_ScaleOffsetFile.c_str()); 152 #endif 153 150 154 if (m_bitstreamFileName.empty()) 151 155 { -
branches/HTM-15.2-dev/source/Lib/TLibCommon/TComPicYuv.cpp
r1362 r1370 91 91 92 92 #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 94 99 #endif 95 100 -
branches/HTM-15.2-dev/source/Lib/TLibCommon/TComRdCost.h
r1360 r1370 130 130 m_maximumDistortionForEarlyExit(std::numeric_limits<Distortion>::max()), 131 131 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 } 133 143 }; 134 144 -
branches/HTM-15.2-dev/source/Lib/TLibCommon/TComRom.cpp
r1360 r1370 537 537 const Bool g_bEncDecTraceEnable = true; 538 538 const Bool g_bEncDecTraceDisable = false; 539 Bool g_HLSTraceEnable = true;539 Bool g_HLSTraceEnable = false; 540 540 Bool g_bJustDoIt = false; 541 541 UInt64 g_nSymbolCounter = 0;
Note: See TracChangeset for help on using the changeset viewer.