Changeset 1328 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 22 Jul 2015, 00:52:14 (9 years ago)
- Location:
- branches/SHM-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1327 r1328 1378 1378 ("ConstrainedIntraPred", m_bUseConstrainedIntraPred, false, "Constrained Intra Prediction") 1379 1379 ("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") 1380 1381 ("PCMEnabledFlag", m_usePCM, false) 1381 1382 ("PCMLog2MaxSize", m_pcmLog2MaxSize, 5u) -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h
r1327 r1328 305 305 Bool m_bUseConstrainedIntraPred; ///< flag for using constrained intra prediction 306 306 Bool m_bFastUDIUseMPMEnabled; 307 Bool m_bFastMEForGenBLowDelayEnabled; 307 308 308 309 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 473 473 m_acTEncTop[layer].setUseConstrainedIntraPred ( m_bUseConstrainedIntraPred ); 474 474 m_acTEncTop[layer].setFastUDIUseMPMEnabled ( m_bFastUDIUseMPMEnabled ); 475 m_acTEncTop[layer].setFastMEForGenBLowDelayEnabled ( m_bFastMEForGenBLowDelayEnabled ); 475 476 m_acTEncTop[layer].setPCMLog2MinSize ( m_uiPCMLog2MinSize); 476 477 m_acTEncTop[layer].setUsePCM ( m_usePCM ); … … 913 914 m_cTEncTop.setUseConstrainedIntraPred ( m_bUseConstrainedIntraPred ); 914 915 m_cTEncTop.setFastUDIUseMPMEnabled ( m_bFastUDIUseMPMEnabled ); 916 m_cTEncTop.setFastMEForGenBLowDelayEnabled ( m_bFastMEForGenBLowDelayEnabled ); 915 917 m_cTEncTop.setPCMLog2MinSize ( m_uiPCMLog2MinSize); 916 918 m_cTEncTop.setUsePCM ( m_usePCM );
Note: See TracChangeset for help on using the changeset viewer.