Changeset 1330 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 22 Jul 2015, 01:27:17 (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
r1329 r1330 1380 1380 ("FastUDIUseMPMEnabled", m_bFastUDIUseMPMEnabled, true, "If enabled, adapt intra direction search, accounting for MPM") 1381 1381 ("FastMEForGenBLowDelayEnabled", m_bFastMEForGenBLowDelayEnabled, true, "If enabled use a fast ME for generalised B Low Delay slices") 1382 ("UseBLambdaForNonKeyLowDelayPictures", m_bUseBLambdaForNonKeyLowDelayPictures, true, "Enables use of B-Lambda for non-key low-delay pictures") 1382 1383 ("PCMEnabledFlag", m_usePCM, false) 1383 1384 ("PCMLog2MaxSize", m_pcmLog2MaxSize, 5u) -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h
r1329 r1330 307 307 Bool m_bFastUDIUseMPMEnabled; 308 308 Bool m_bFastMEForGenBLowDelayEnabled; 309 Bool m_bUseBLambdaForNonKeyLowDelayPictures; 309 310 310 311 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
r1329 r1330 474 474 m_acTEncTop[layer].setFastUDIUseMPMEnabled ( m_bFastUDIUseMPMEnabled ); 475 475 m_acTEncTop[layer].setFastMEForGenBLowDelayEnabled ( m_bFastMEForGenBLowDelayEnabled ); 476 m_acTEncTop[layer]..setUseBLambdaForNonKeyLowDelayPictures ( m_bUseBLambdaForNonKeyLowDelayPictures ); 476 477 m_acTEncTop[layer].setPCMLog2MinSize ( m_uiPCMLog2MinSize); 477 478 m_acTEncTop[layer].setUsePCM ( m_usePCM ); … … 916 917 m_cTEncTop.setFastUDIUseMPMEnabled ( m_bFastUDIUseMPMEnabled ); 917 918 m_cTEncTop.setFastMEForGenBLowDelayEnabled ( m_bFastMEForGenBLowDelayEnabled ); 919 m_cTEncTop.setUseBLambdaForNonKeyLowDelayPictures ( m_bUseBLambdaForNonKeyLowDelayPictures ); 918 920 m_cTEncTop.setPCMLog2MinSize ( m_uiPCMLog2MinSize); 919 921 m_cTEncTop.setUsePCM ( m_usePCM );
Note: See TracChangeset for help on using the changeset viewer.