Changeset 188 in 3DVCSoftware for branches/HTM-4.1-dev0/source/App
- Timestamp:
- 15 Nov 2012, 21:36:12 (12 years ago)
- Location:
- branches/HTM-4.1-dev0/source/App
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.1-dev0/source/App/TAppDecoder/TAppDecTop.cpp
r105 r188 436 436 m_useDepth = true; 437 437 438 #if FIX_DECODING_WO_WRITING439 438 if ( m_pchReconFile ) 440 439 { 441 #endif442 440 while( m_tVideoIOYuvReconFile.size() < newNumberOfViewDepth) 443 441 { … … 473 471 free ( nextFilename ); 474 472 } 475 #if FIX_DECODING_WO_WRITING 476 } 477 #endif 473 } 478 474 479 475 while( m_pocLastDisplay.size() < newNumberOfViewDepth ) -
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 -
branches/HTM-4.1-dev0/source/App/TAppRenderer/TAppRendererTop.cpp
r124 r188 532 532 #endif 533 533 534 #if HHI_VSO_SPEEDUP_A0033535 #if FIX_VSO_SETUP536 534 cCurModel.setupPart( 0, m_iSourceHeight ); 537 #else538 cCurModel.setHorOffset( 0 );539 #endif540 #endif541 535 542 536 for ( Int iViewIdx = 0; iViewIdx < m_iNumberOfInputViews; iViewIdx++ ) … … 713 707 714 708 AOT( m_iLog2SamplingFactor != 0 ); 715 #if HHI_VSO_SPEEDUP_A0033716 #if FIX_VSO_SETUP717 709 cCurModel.setupPart( 0, m_iSourceHeight ); 718 #else719 cCurModel.setHorOffset( 0 );720 #endif721 #endif722 710 #if LGE_VSO_EARLY_SKIP_A0093 723 711 cCurModel.create( m_iNumberOfInputViews, m_iNumberOfOutputViews, m_iSourceWidth, m_iSourceHeight, m_iShiftPrecision, m_iBlendHoleMargin, false );
Note: See TracChangeset for help on using the changeset viewer.