Changeset 1405 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder
- Timestamp:
- 4 Aug 2015, 04:10:12 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncCfg.h
r1402 r1405 181 181 Bool m_bFastMEAssumingSmootherMVEnabled; 182 182 Int m_minSearchWindow; 183 Bool m_bRestrictMESampling; 183 184 184 185 //====== Quality control ======== … … 568 569 Void setFastMEAssumingSmootherMVEnabled ( Bool b ) { m_bFastMEAssumingSmootherMVEnabled = b; } 569 570 Void setMinSearchWindow ( Int i ) { m_minSearchWindow = i; } 571 Void setRestrictMESampling ( Bool b ) { m_bRestrictMESampling = b; } 570 572 571 573 //====== Quality control ======== … … 641 643 Bool getFastMEAssumingSmootherMVEnabled () const { return m_bFastMEAssumingSmootherMVEnabled; } 642 644 Int getMinSearchWindow () const { return m_minSearchWindow; } 645 Bool getRestrictMESampling () const { return m_bRestrictMESampling; } 643 646 644 647 //==== Quality control ======== -
branches/SHM-dev/source/Lib/TLibEncoder/TEncSearch.cpp
r1404 r1405 340 340 m_cDistParam.m_maximumDistortionForEarlyExit = rcStruct.uiBestSad; 341 341 342 if( m_pcEncCfg->getFastSearch() == SELECTIVE)342 if((m_pcEncCfg->getRestrictMESampling() == false) && m_pcEncCfg->getFastSearch() == SELECTIVE) 343 343 { 344 344 Int isubShift = 0;
Note: See TracChangeset for help on using the changeset viewer.