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


Ignore:
Timestamp:
21 Jul 2015, 01:30:10 (10 years ago)
Author:
seregin
Message:

port rev 4385

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

Legend:

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

    r1301 r1311  
    12781278
    12791279  // motion search options
     1280  ("DisableIntraInInter",                             m_bDisableIntraPUsInInterSlices,                  false, "Flag to disable intra PUs in inter slices")
    12801281  ("FastSearch",                                      m_iFastSearch,                                        1, "0:Full search  1:Diamond  2:PMVFAST")
    12811282  ("SearchRange,-sr",                                 m_iSearchRange,                                      96, "Motion search range")
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h

    r1298 r1311  
    272272#endif
    273273  Int       m_rdPenalty;                                      ///< RD-penalty for 32x32 TU for intra in non-intra slices (0: no RD-penalty, 1: RD-penalty, 2: maximum RD-penalty)
     274  Bool      m_bDisableIntraPUsInInterSlices;                  ///< Flag for disabling intra predicted PUs in inter slices.
    274275  Int       m_iFastSearch;                                    ///< ME mode, 0 = full, 1 = diamond, 2 = PMVFAST
    275276  Int       m_iSearchRange;                                   ///< ME search range
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r1306 r1311  
    406406
    407407    //====== Motion search ========
     408    m_acTEncTop[layer].setDisableIntraPUsInInterSlices                     ( m_bDisableIntraPUsInInterSlices );
    408409    m_acTEncTop[layer].setFastSearch                                       ( m_iFastSearch  );
    409410    m_acTEncTop[layer].setSearchRange                                      ( m_iSearchRange );
     
    842843
    843844  //====== Motion search ========
     845  m_cTEncTop.setDisableIntraPUsInInterSlices                      ( m_bDisableIntraPUsInInterSlices );
    844846  m_cTEncTop.setFastSearch                                        ( m_iFastSearch  );
    845847  m_cTEncTop.setSearchRange                                       ( m_iSearchRange );
Note: See TracChangeset for help on using the changeset viewer.