Changeset 1327 in SHVCSoftware for branches/SHM-dev/source/App/TAppEncoder


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

port rev 4405

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

Legend:

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

    r1326 r1327  
    13771377
    13781378  ("ConstrainedIntraPred",                            m_bUseConstrainedIntraPred,                       false, "Constrained Intra Prediction")
     1379  ("FastUDIUseMPMEnabled",                            m_bFastUDIUseMPMEnabled,                           true, "If enabled, adapt intra direction search, accounting for MPM")
    13791380  ("PCMEnabledFlag",                                  m_usePCM,                                         false)
    13801381  ("PCMLog2MaxSize",                                  m_pcmLog2MaxSize,                                    5u)
  • TabularUnified branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h

    r1326 r1327  
    304304
    305305  Bool      m_bUseConstrainedIntraPred;                       ///< flag for using constrained intra prediction
     306  Bool      m_bFastUDIUseMPMEnabled;
    306307
    307308  Int       m_decodedPictureHashSEIEnabled;                    ///< Checksum(3)/CRC(2)/MD5(1)/disable(0) acting on decoded picture hash SEI message
  • TabularUnified branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r1326 r1327  
    472472    }
    473473    m_acTEncTop[layer].setUseConstrainedIntraPred                          ( m_bUseConstrainedIntraPred );
     474    m_acTEncTop[layer].setFastUDIUseMPMEnabled                             ( m_bFastUDIUseMPMEnabled );
    474475    m_acTEncTop[layer].setPCMLog2MinSize                                   ( m_uiPCMLog2MinSize);
    475476    m_acTEncTop[layer].setUsePCM                                           ( m_usePCM );
     
    911912  }
    912913  m_cTEncTop.setUseConstrainedIntraPred                           ( m_bUseConstrainedIntraPred );
     914  m_cTEncTop.setFastUDIUseMPMEnabled                              ( m_bFastUDIUseMPMEnabled );
    913915  m_cTEncTop.setPCMLog2MinSize                                    ( m_uiPCMLog2MinSize);
    914916  m_cTEncTop.setUsePCM                                            ( m_usePCM );
Note: See TracChangeset for help on using the changeset viewer.