Changeset 152 in 3DVCSoftware for branches/HTM-4.1-dev2-LG/source/App
- Timestamp:
- 26 Oct 2012, 12:08:59 (12 years ago)
- Location:
- branches/HTM-4.1-dev2-LG/source/App
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.1-dev2-LG/source/App/TAppEncoder/TAppEncCfg.cpp
r146 r152 326 326 ("LoopFilterBetaOffset_div2", m_loopFilterBetaOffsetDiv2, 0 ) 327 327 ("LoopFilterTcOffset_div2", m_loopFilterTcOffsetDiv2, 0 ) 328 #if LGE_ILLUCOMP_B0045 329 ("IlluCompEnable", m_bUseIC , true , "Use illumination compensation for inter-view prediction" ) 330 #endif 328 331 #if DBL_CONTROL 329 332 #if FIX_DBL_CONTROL_DEFAULT … … 1718 1721 printf("SAO:%d ", (m_abUseSAO [0] ? 1 : 0)); 1719 1722 printf("RDQ:%d ", (m_abUseRDOQ[0] ? 1 : 0) ); 1723 #if LGE_ILLUCOMP_B0045 1724 printf("IlluCompEnable: %d ", m_bUseIC); 1725 #endif 1720 1726 printf("\n"); 1721 1727 … … 1730 1736 printf("WVSO:%d ", m_bUseWVSO ); 1731 1737 #endif 1738 1732 1739 #if OL_DEPTHLIMIT_A0044 1733 1740 printf("DPL:%d ", m_bDepthPartitionLimiting); -
branches/HTM-4.1-dev2-LG/source/App/TAppEncoder/TAppEncCfg.h
r120 r152 160 160 #endif 161 161 vector<Bool> m_abUseSAO; 162 #if LGE_ILLUCOMP_B0045 163 Bool m_bUseIC; ///< flag for using illumination compensation for inter-view prediction 164 #endif 162 165 #if SAO_UNIT_INTERLEAVING 163 166 Int m_maxNumOffsetsPerPic; ///< SAO maximun number of offset per picture -
branches/HTM-4.1-dev2-LG/source/App/TAppEncoder/TAppEncTop.cpp
r124 r152 300 300 m_acTEncTopList[iViewIdx]->setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag ); 301 301 m_acTEncTopList[iViewIdx]->setUseSAO ( m_abUseSAO[0] ); 302 #if LGE_ILLUCOMP_B0045 303 m_acTEncTopList[iViewIdx]->setUseIC ( m_bUseIC ); 304 #endif 302 305 #if SAO_UNIT_INTERLEAVING 303 306 m_acTEncTopList[iViewIdx]->setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic); … … 579 582 m_acTEncDepthTopList[iViewIdx]->setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag ); 580 583 m_acTEncDepthTopList[iViewIdx]->setUseSAO ( m_abUseSAO[1] ); 584 #if LGE_ILLUCOMP_B0045 585 m_acTEncDepthTopList[iViewIdx]->setUseIC ( false ); 586 #endif 581 587 #if SAO_UNIT_INTERLEAVING 582 588 m_acTEncDepthTopList[iViewIdx]->setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic); -
branches/HTM-4.1-dev2-LG/source/App/utils/BitrateTargeting/makefile
r56 r152 42 42 43 43 $(extractBitratesExecutable): $(extractBitratesObjects) 44 44 g++ -o $@ $(extractBitratesObjects) 45 45 $(guessLambdaModifiersExecutable): $(guessLambdaModifiersObjects) 46 46 g++ -o $@ $(guessLambdaModifiersObjects) 47 47 48 48 ExtractBitrates.o: ExtractBitrates.h RuntimeError.h … … 52 52 53 53 clean: 54 54 rm $(extractBitratesExecutable) $(extractBitratesObjects) $(guessLambdaModifiersExecutable) $(guessLambdaModifiersObjects)
Note: See TracChangeset for help on using the changeset viewer.