Changeset 152 in 3DVCSoftware for branches/HTM-4.1-dev2-LG/source/App


Ignore:
Timestamp:
26 Oct 2012, 12:08:59 (12 years ago)
Author:
lg
Message:
  1. integration of JCT3V-B0045.
  2. cleanup of defined, valued but not used variable "uiPrevTexPartIndex" in function xCompressCU. This cleanup is made to pass the compiling in Linux.
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  
    326326  ("LoopFilterBetaOffset_div2", m_loopFilterBetaOffsetDiv2, 0 )
    327327  ("LoopFilterTcOffset_div2", m_loopFilterTcOffsetDiv2, 0 )
     328#if LGE_ILLUCOMP_B0045
     329  ("IlluCompEnable",                  m_bUseIC                  , true         , "Use illumination compensation for inter-view prediction" )
     330#endif
    328331#if DBL_CONTROL
    329332#if FIX_DBL_CONTROL_DEFAULT
     
    17181721  printf("SAO:%d ", (m_abUseSAO [0] ? 1 : 0));
    17191722  printf("RDQ:%d ", (m_abUseRDOQ[0] ? 1 : 0) );
     1723#if LGE_ILLUCOMP_B0045
     1724  printf("IlluCompEnable: %d ", m_bUseIC);
     1725#endif
    17201726  printf("\n");
    17211727
     
    17301736  printf("WVSO:%d ", m_bUseWVSO );
    17311737#endif
     1738
    17321739#if OL_DEPTHLIMIT_A0044
    17331740  printf("DPL:%d ", m_bDepthPartitionLimiting);
  • branches/HTM-4.1-dev2-LG/source/App/TAppEncoder/TAppEncCfg.h

    r120 r152  
    160160#endif
    161161  vector<Bool> m_abUseSAO;
     162#if LGE_ILLUCOMP_B0045
     163  Bool      m_bUseIC;                                     ///< flag for using illumination compensation for inter-view prediction
     164#endif
    162165#if SAO_UNIT_INTERLEAVING
    163166  Int       m_maxNumOffsetsPerPic;                            ///< SAO maximun number of offset per picture
  • branches/HTM-4.1-dev2-LG/source/App/TAppEncoder/TAppEncTop.cpp

    r124 r152  
    300300    m_acTEncTopList[iViewIdx]->setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag );
    301301    m_acTEncTopList[iViewIdx]->setUseSAO               ( m_abUseSAO[0]     );
     302#if LGE_ILLUCOMP_B0045
     303  m_acTEncTopList[iViewIdx]->setUseIC                ( m_bUseIC          );
     304#endif
    302305#if SAO_UNIT_INTERLEAVING
    303306    m_acTEncTopList[iViewIdx]->setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic);
     
    579582      m_acTEncDepthTopList[iViewIdx]->setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag );
    580583      m_acTEncDepthTopList[iViewIdx]->setUseSAO               ( m_abUseSAO[1]     );
     584#if LGE_ILLUCOMP_B0045
     585    m_acTEncDepthTopList[iViewIdx]->setUseIC                ( false     );
     586#endif
    581587#if SAO_UNIT_INTERLEAVING
    582588      m_acTEncDepthTopList[iViewIdx]->setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic);
  • branches/HTM-4.1-dev2-LG/source/App/utils/BitrateTargeting/makefile

    r56 r152  
    4242
    4343$(extractBitratesExecutable): $(extractBitratesObjects)
    44         g++ -o $@ $(extractBitratesObjects)
     44  g++ -o $@ $(extractBitratesObjects)
    4545$(guessLambdaModifiersExecutable): $(guessLambdaModifiersObjects)
    46         g++ -o $@ $(guessLambdaModifiersObjects)
     46  g++ -o $@ $(guessLambdaModifiersObjects)
    4747
    4848ExtractBitrates.o: ExtractBitrates.h RuntimeError.h
     
    5252
    5353clean:
    54         rm $(extractBitratesExecutable) $(extractBitratesObjects) $(guessLambdaModifiersExecutable) $(guessLambdaModifiersObjects)
     54  rm $(extractBitratesExecutable) $(extractBitratesObjects) $(guessLambdaModifiersExecutable) $(guessLambdaModifiersObjects)
Note: See TracChangeset for help on using the changeset viewer.