Changeset 574 in SHVCSoftware for branches/SHM-5.0-dev/source/Lib


Ignore:
Timestamp:
28 Jan 2014, 19:40:20 (11 years ago)
Author:
seregin
Message:

move IL WP setting into the config file

Location:
branches/SHM-5.0-dev/source/Lib/TLibEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-5.0-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r573 r574  
    15581558#if O0194_WEIGHTED_PREDICTION_CGS
    15591559      // Calculate for the base layer to be used in EL as Inter layer reference
    1560       if( m_pcEncTop->getBitDepthScalabilityFlag() )
     1560      if( m_pcEncTop->getInterLayerWeightedPredFlag() )
    15611561      {
    15621562        m_pcSliceEncoder->estimateILWpParam( pcSlice );
  • branches/SHM-5.0-dev/source/Lib/TLibEncoder/TEncSlice.cpp

    r573 r574  
    811811  }
    812812#if O0194_WEIGHTED_PREDICTION_CGS
    813   else if( m_ppcTEncTop[pcSlice->getLayerId()]->getBitDepthScalabilityFlag() )
     813  else if( m_ppcTEncTop[pcSlice->getLayerId()]->getInterLayerWeightedPredFlag() )
    814814  {
    815815    // Calculate for the base layer to be used in EL as Inter layer reference
  • branches/SHM-5.0-dev/source/Lib/TLibEncoder/TEncTop.h

    r573 r574  
    152152#endif
    153153#if O0194_WEIGHTED_PREDICTION_CGS
    154   Bool                    m_bitDepthScalabilityFlag;
     154  Bool                    m_interLayerWeightedPredFlag;
    155155#endif
    156156#endif //SVC_EXTENSION
     
    238238#endif
    239239#if O0194_WEIGHTED_PREDICTION_CGS
    240   Void      setBitDepthScalabilityFlag(Bool flag)   { m_bitDepthScalabilityFlag = flag; }
    241   Bool      getBitDepthScalabilityFlag()            { return m_bitDepthScalabilityFlag; }
     240  Void      setInterLayerWeightedPredFlag(Bool flag)   { m_interLayerWeightedPredFlag = flag; }
     241  Bool      getInterLayerWeightedPredFlag()            { return m_interLayerWeightedPredFlag; }
    242242#endif
    243243#if AVC_SYNTAX
Note: See TracChangeset for help on using the changeset viewer.