Changeset 1326 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 22 Jul 2015, 00:42:03 (10 years ago)
- Location:
- branches/SHM-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1325 r1326 1286 1286 ("BipredSearchRange", m_bipredSearchRange, 4, "Motion search range for bipred refinement") 1287 1287 ("ClipForBiPredMEEnabled", m_bClipForBiPredMeEnabled, false, "Enables clipping in the Bi-Pred ME. It is disabled to reduce encoder run-time") 1288 ("FastMEAssumingSmootherMVEnabled", m_bFastMEAssumingSmootherMVEnabled, true, "Enables fast ME assuming a smoother MV.") 1289 1288 1290 ("HadamardME", m_bUseHADME, true, "Hadamard ME for fractional-pel") 1289 1291 ("ASR", m_bUseASR, false, "Adaptive motion search range") -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h
r1325 r1326 86 86 std::vector<Int> m_numOutputLayersInOutputLayerSet; 87 87 std::vector< std::vector<Int> > m_listOfOutputLayers; 88 Bool m_isField; ///< enable field coding89 Bool m_isTopFieldFirst;90 Bool m_bEfficientFieldIRAPEnabled; ///< enable an efficient field IRAP structure.91 88 #else 92 89 Char* m_pchInputFile; ///< source file name … … 101 98 102 99 Int m_iSourceHeightOrg; ///< original source height in pixel (when interlaced = frame height) 103 100 #endif 104 101 Bool m_isField; ///< enable field coding 105 102 Bool m_isTopFieldFirst; 106 103 Bool m_bEfficientFieldIRAPEnabled; ///< enable an efficient field IRAP structure. 107 104 105 #if !SVC_EXTENSION 108 106 Int m_conformanceWindowMode; 109 107 Int m_confWinLeft; … … 279 277 Int m_bipredSearchRange; ///< ME search range for bipred refinement 280 278 Bool m_bClipForBiPredMeEnabled; ///< Enables clipping for Bi-Pred ME. 279 Bool m_bFastMEAssumingSmootherMVEnabled; ///< Enables fast ME assuming a smoother MV. 281 280 Bool m_bUseFastEnc; ///< flag for using fast encoder setting 282 281 Bool m_bUseEarlyCU; ///< flag for using Early CU setting -
branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1325 r1326 410 410 m_acTEncTop[layer].setBipredSearchRange ( m_bipredSearchRange ); 411 411 m_acTEncTop[layer].setClipForBiPredMeEnabled ( m_bClipForBiPredMeEnabled ); 412 m_acTEncTop[layer].setFastMEAssumingSmootherMVEnabled ( m_bFastMEAssumingSmootherMVEnabled ); 412 413 413 414 //====== Quality control ======== … … 848 849 m_cTEncTop.setBipredSearchRange ( m_bipredSearchRange ); 849 850 m_cTEncTop.setClipForBiPredMeEnabled ( m_bClipForBiPredMeEnabled ); 851 m_cTEncTop.setFastMEAssumingSmootherMVEnabled ( m_bFastMEAssumingSmootherMVEnabled ); 850 852 851 853 //====== Quality control ========
Note: See TracChangeset for help on using the changeset viewer.