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


Ignore:
Timestamp:
22 Jul 2015, 00:52:14 (9 years ago)
Author:
seregin
Message:

port rev 4406

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

Legend:

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

    r1327 r1328  
    13781378  ("ConstrainedIntraPred",                            m_bUseConstrainedIntraPred,                       false, "Constrained Intra Prediction")
    13791379  ("FastUDIUseMPMEnabled",                            m_bFastUDIUseMPMEnabled,                           true, "If enabled, adapt intra direction search, accounting for MPM")
     1380  ("FastMEForGenBLowDelayEnabled",                    m_bFastMEForGenBLowDelayEnabled,                   true, "If enabled use a fast ME for generalised B Low Delay slices")
    13801381  ("PCMEnabledFlag",                                  m_usePCM,                                         false)
    13811382  ("PCMLog2MaxSize",                                  m_pcmLog2MaxSize,                                    5u)
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h

    r1327 r1328  
    305305  Bool      m_bUseConstrainedIntraPred;                       ///< flag for using constrained intra prediction
    306306  Bool      m_bFastUDIUseMPMEnabled;
     307  Bool      m_bFastMEForGenBLowDelayEnabled;
    307308
    308309  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

    r1327 r1328  
    473473    m_acTEncTop[layer].setUseConstrainedIntraPred                          ( m_bUseConstrainedIntraPred );
    474474    m_acTEncTop[layer].setFastUDIUseMPMEnabled                             ( m_bFastUDIUseMPMEnabled );
     475    m_acTEncTop[layer].setFastMEForGenBLowDelayEnabled                     ( m_bFastMEForGenBLowDelayEnabled );
    475476    m_acTEncTop[layer].setPCMLog2MinSize                                   ( m_uiPCMLog2MinSize);
    476477    m_acTEncTop[layer].setUsePCM                                           ( m_usePCM );
     
    913914  m_cTEncTop.setUseConstrainedIntraPred                           ( m_bUseConstrainedIntraPred );
    914915  m_cTEncTop.setFastUDIUseMPMEnabled                              ( m_bFastUDIUseMPMEnabled );
     916  m_cTEncTop.setFastMEForGenBLowDelayEnabled                      ( m_bFastMEForGenBLowDelayEnabled );
    915917  m_cTEncTop.setPCMLog2MinSize                                    ( m_uiPCMLog2MinSize);
    916918  m_cTEncTop.setUsePCM                                            ( m_usePCM );
Note: See TracChangeset for help on using the changeset viewer.