Changeset 483 in 3DVCSoftware for branches/HTM-DEV-0.3-dev0/source
- Timestamp:
- 19 Jun 2013, 17:57:12 (11 years ago)
- Location:
- branches/HTM-DEV-0.3-dev0/source
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev0/source/App/TAppDecoder/TAppDecCfg.h
r446 r483 84 84 #if H_MV 85 85 , m_maxLayerId(0) 86 , m_pchReconFiles(NULL)87 86 #endif 88 87 , m_pchReconFile(NULL) -
branches/HTM-DEV-0.3-dev0/source/App/TAppDecoder/TAppDecTop.cpp
r446 r483 95 95 m_pchReconFile = NULL; 96 96 } 97 #if H_3D_FIX 98 if (m_pchScaleOffsetFile) 99 { 100 free (m_pchScaleOffsetFile); 101 m_pchScaleOffsetFile = NULL; 102 } 103 #endif 97 104 } 98 105 -
branches/HTM-DEV-0.3-dev0/source/Lib/TAppCommon/TAppComCamPara.cpp
r446 r483 965 965 //--- determine (virtual) camera parameter shift between view order index 1 and base view (view order index 0) --- 966 966 Double dCamPosShift, dPicPosShift; 967 #if H_3D_PDM_CAM_PARAS 967 968 Int iMinVOI = (1<<30); 969 #endif 968 970 Int iMinAbsVOI = (1<<30); 969 971 Int iMinAbsVOIId = 0; … … 973 975 if( iAbsVOI < iMinAbsVOI ) 974 976 { 977 #if H_3D_PDM_CAM_PARAS 975 978 iMinVOI = m_aiViewOrderIndex[ iBaseId ]; 979 #endif 976 980 iMinAbsVOI = iAbsVOI; 977 981 iMinAbsVOIId = iBaseId; -
branches/HTM-DEV-0.3-dev0/source/Lib/TLibCommon/TypeDef.h
r446 r483 78 78 // SAIT_VSO_EST_A0033, JCT3V-A0033 modification 3 79 79 // LGE_WVSO_A0119 80 #define H_3D_FIX 1 // Temporary for minor fixes 80 81 #endif 81 82 … … 91 92 #define H_3D_VSO_RM_ASSERTIONS 0 // Output VSO assertions 92 93 #define H_3D_VSO_SYNTH_DIST_OUT 0 // Output of synthesized view distortion instead of depth distortion in encoder output 94 #define H_3D_VSO_FIX 0 // This fix should be enabled after verification 93 95 #endif 94 96 -
branches/HTM-DEV-0.3-dev0/source/Lib/TLibEncoder/TEncSearch.cpp
r446 r483 2576 2576 2577 2577 #if H_3D_VSO // M35 2578 #if H_3D_VSO_FIX // This fix should be enabled after verification 2578 2579 Double dLambda; 2579 2580 if ( m_pcRdCost->getUseLambdaScaleVSO() ) … … 2583 2584 2584 2585 Double cost = (Double)uiSad + (Double)iModeBits * m_pcRdCost->getSqrtLambda(); 2586 #else 2587 Double cost = (Double)uiSad + (Double)iModeBits * m_pcRdCost->getSqrtLambda(); 2588 #endif 2585 2589 #else 2586 2590 Double cost = (Double)uiSad + (Double)iModeBits * m_pcRdCost->getSqrtLambda();
Note: See TracChangeset for help on using the changeset viewer.