Changeset 188 in 3DVCSoftware for branches/HTM-4.1-dev0/source/App/TAppEncoder
- Timestamp:
- 15 Nov 2012, 21:36:12 (12 years ago)
- Location:
- branches/HTM-4.1-dev0/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r187 r188 74 74 { 75 75 m_aidQP = NULL; 76 #if FIXES77 76 m_aidQPdepth = NULL; 78 #endif79 77 } 80 78 … … 86 84 } 87 85 88 #if FIXES89 86 if ( m_aidQPdepth ) 90 87 { 91 88 delete[] m_aidQPdepth; m_aidQPdepth = NULL; 92 89 } 93 #endif94 90 95 91 for(Int i = 0; i< m_pchInputFileList.size(); i++ ) … … 120 116 #endif 121 117 122 #if FIX_MEM_LEAKS123 118 if ( m_pchCameraParameterFile != NULL ) 124 119 free ( m_pchCameraParameterFile ); … … 139 134 free ( m_scalingListFile ); 140 135 141 #endif142 136 143 137 } … … 330 324 #endif 331 325 #if DBL_CONTROL 332 #if FIX_DBL_CONTROL_DEFAULT333 326 ("DeblockingFilterControlPresent", m_DeblockingFilterControlPresent, true) 334 #else335 ("DeblockingFilterControlPresent", m_DeblockingFilterControlPresent, false)336 #endif337 327 #endif 338 328 -
branches/HTM-4.1-dev0/source/App/TAppEncoder/TAppEncTop.cpp
r185 r188 689 689 if ( m_uiVSOMode == 4 ) 690 690 { 691 #if HHI_VSO_SPEEDUP_A0033692 691 #if LGE_VSO_EARLY_SKIP_A0093 693 692 m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0, m_bVSOEarlySkip ); 694 693 #else 695 694 m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0 ); 696 #endif697 #else698 m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, m_iSourceHeight, LOG2_DISP_PREC_LUT, 0 );699 695 #endif 700 696 … … 1027 1023 pcDepthPicYuvOrg = NULL; 1028 1024 1029 #if FIX_MEM_LEAKS1030 1025 if ( pcPdmDepthOrg != NULL ) 1031 1026 { … … 1034 1029 pcPdmDepthOrg = NULL; 1035 1030 }; 1036 #endif1037 1031 1038 1032 … … 1293 1287 #endif 1294 1288 #if HHI_VSO 1295 #if HHI_VSO_SPEEDUP_A00331296 1289 Void TAppEncTop::setupRenModel( Int iPoc, Int iEncViewIdx, Int iEncContent, Int iHorOffset ) 1297 1290 { 1298 #if FIX_VSO_SETUP1299 1291 m_cRendererModel.setupPart( iHorOffset, Min( g_uiMaxCUHeight, m_iSourceHeight - iHorOffset ) ); 1300 #else1301 m_cRendererModel.setHorOffset( iHorOffset );1302 #endif1303 #else1304 Void TAppEncTop::setupRenModel( Int iPoc, Int iEncViewIdx, Int iEncContent )1305 {1306 #endif1307 1292 Int iEncViewSIdx = m_cCameraData.getBaseId2SortedId()[ iEncViewIdx ]; 1308 1293 -
branches/HTM-4.1-dev0/source/App/TAppEncoder/TAppEncTop.h
r177 r188 136 136 #endif 137 137 #if HHI_VSO 138 #if HHI_VSO_SPEEDUP_A0033139 138 Void setupRenModel ( Int iPoc, Int iEncViewIdx, Int iEncContent, Int iHorOffset ); 140 #else141 Void setupRenModel ( Int iPoc, Int iEncViewIdx, Int iEncContent );142 #endif143 139 #endif 144 140
Note: See TracChangeset for help on using the changeset viewer.