Changeset 1331 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 22 Jul 2015, 01:30:58 (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
r1330 r1331 1363 1363 ("AlignCABACBeforeBypass", m_cabacBypassAlignmentEnabledFlag, false, "Align the CABAC engine to a defined fraction of a bit prior to coding bypass data. Must be 1 in high bit rate profile, 0 otherwise" ) 1364 1364 ("SAO", m_bUseSAO, true, "Enable Sample Adaptive Offset") 1365 ("TestSAODisableAtPictureLevel", m_bTestSAODisableAtPictureLevel, false, "Enables the testing of disabling SAO at the picture level after having analysed all blocks") 1365 1366 ("MaxNumOffsetsPerPic", m_maxNumOffsetsPerPic, 2048, "Max number of SAO offset per picture (Default: 2048)") 1366 1367 ("SAOLcuBoundary", m_saoCtuBoundary, false, "0: right/bottom CTU boundary areas skipped from SAO parameter estimation, 1: non-deblocked pixels are used for those areas") -
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h
r1330 r1331 248 248 // coding tool (SAO) 249 249 Bool m_bUseSAO; 250 Bool m_bTestSAODisableAtPictureLevel; 250 251 Int m_maxNumOffsetsPerPic; ///< SAO maximun number of offset per picture 251 252 Bool m_saoCtuBoundary; ///< SAO parameter estimation using non-deblocked pixels for CTU bottom and right boundary areas -
branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp
r1330 r1331 474 474 m_acTEncTop[layer].setFastUDIUseMPMEnabled ( m_bFastUDIUseMPMEnabled ); 475 475 m_acTEncTop[layer].setFastMEForGenBLowDelayEnabled ( m_bFastMEForGenBLowDelayEnabled ); 476 m_acTEncTop[layer]. .setUseBLambdaForNonKeyLowDelayPictures( m_bUseBLambdaForNonKeyLowDelayPictures );476 m_acTEncTop[layer].setUseBLambdaForNonKeyLowDelayPictures ( m_bUseBLambdaForNonKeyLowDelayPictures ); 477 477 m_acTEncTop[layer].setPCMLog2MinSize ( m_uiPCMLog2MinSize); 478 478 m_acTEncTop[layer].setUsePCM ( m_usePCM ); … … 519 519 m_acTEncTop[layer].setLFCrossSliceBoundaryFlag ( m_bLFCrossSliceBoundaryFlag ); 520 520 m_acTEncTop[layer].setUseSAO ( m_bUseSAO ); 521 m_acTEncTop[layer].setTestSAODisableAtPictureLevel ( m_bTestSAODisableAtPictureLevel ); 521 522 m_acTEncTop[layer].setMaxNumOffsetsPerPic ( m_maxNumOffsetsPerPic ); 522 523 … … 952 953 m_cTEncTop.setLFCrossSliceBoundaryFlag ( m_bLFCrossSliceBoundaryFlag ); 953 954 m_cTEncTop.setUseSAO ( m_bUseSAO ); 955 m_cTEncTop.setTestSAODisableAtPictureLevel ( m_bTestSAODisableAtPictureLevel ); 954 956 m_cTEncTop.setMaxNumOffsetsPerPic ( m_maxNumOffsetsPerPic); 955 957
Note: See TracChangeset for help on using the changeset viewer.