Changeset 1330 in SHVCSoftware for branches/SHM-dev/source/App


Ignore:
Timestamp:
22 Jul 2015, 01:27:17 (9 years ago)
Author:
seregin
Message:

port rev 4408

Location:
branches/SHM-dev/source/App/TAppEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r1329 r1330  
    13801380  ("FastUDIUseMPMEnabled",                            m_bFastUDIUseMPMEnabled,                           true, "If enabled, adapt intra direction search, accounting for MPM")
    13811381  ("FastMEForGenBLowDelayEnabled",                    m_bFastMEForGenBLowDelayEnabled,                   true, "If enabled use a fast ME for generalised B Low Delay slices")
     1382  ("UseBLambdaForNonKeyLowDelayPictures",             m_bUseBLambdaForNonKeyLowDelayPictures,            true, "Enables use of B-Lambda for non-key low-delay pictures")
    13821383  ("PCMEnabledFlag",                                  m_usePCM,                                         false)
    13831384  ("PCMLog2MaxSize",                                  m_pcmLog2MaxSize,                                    5u)
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h

    r1329 r1330  
    307307  Bool      m_bFastUDIUseMPMEnabled;
    308308  Bool      m_bFastMEForGenBLowDelayEnabled;
     309  Bool      m_bUseBLambdaForNonKeyLowDelayPictures;
    309310
    310311  Int       m_decodedPictureHashSEIEnabled;                    ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r1329 r1330  
    474474    m_acTEncTop[layer].setFastUDIUseMPMEnabled                             ( m_bFastUDIUseMPMEnabled );
    475475    m_acTEncTop[layer].setFastMEForGenBLowDelayEnabled                     ( m_bFastMEForGenBLowDelayEnabled );
     476    m_acTEncTop[layer]..setUseBLambdaForNonKeyLowDelayPictures             ( m_bUseBLambdaForNonKeyLowDelayPictures );
    476477    m_acTEncTop[layer].setPCMLog2MinSize                                   ( m_uiPCMLog2MinSize);
    477478    m_acTEncTop[layer].setUsePCM                                           ( m_usePCM );
     
    916917  m_cTEncTop.setFastUDIUseMPMEnabled                              ( m_bFastUDIUseMPMEnabled );
    917918  m_cTEncTop.setFastMEForGenBLowDelayEnabled                      ( m_bFastMEForGenBLowDelayEnabled );
     919  m_cTEncTop.setUseBLambdaForNonKeyLowDelayPictures               ( m_bUseBLambdaForNonKeyLowDelayPictures );
    918920  m_cTEncTop.setPCMLog2MinSize                                    ( m_uiPCMLog2MinSize);
    919921  m_cTEncTop.setUsePCM                                            ( m_usePCM );
Note: See TracChangeset for help on using the changeset viewer.