Changeset 1332 in SHVCSoftware for branches/SHM-dev/source/App
- Timestamp:
- 22 Jul 2015, 01:36:46 (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
r1331 r1332 1364 1364 ("SAO", m_bUseSAO, true, "Enable Sample Adaptive Offset") 1365 1365 ("TestSAODisableAtPictureLevel", m_bTestSAODisableAtPictureLevel, false, "Enables the testing of disabling SAO at the picture level after having analysed all blocks") 1366 ("SaoEncodingRate", m_saoEncodingRate, 0.75, "When >0 SAO early picture termination is enabled for luma and chroma") 1367 ("SaoEncodingRateChroma", m_saoEncodingRateChroma, 0.5, "The SAO early picture termination rate to use for chroma (when m_SaoEncodingRate is >0). If <=0, use results for luma") 1366 1368 ("MaxNumOffsetsPerPic", m_maxNumOffsetsPerPic, 2048, "Max number of SAO offset per picture (Default: 2048)") 1367 1369 ("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
r1331 r1332 249 249 Bool m_bUseSAO; 250 250 Bool m_bTestSAODisableAtPictureLevel; 251 Double m_saoEncodingRate; ///< When >0 SAO early picture termination is enabled for luma and chroma 252 Double m_saoEncodingRateChroma; ///< The SAO early picture termination rate to use for chroma (when m_SaoEncodingRate is >0). If <=0, use results for luma. 251 253 Int m_maxNumOffsetsPerPic; ///< SAO maximun number of offset per picture 252 254 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
r1331 r1332 520 520 m_acTEncTop[layer].setUseSAO ( m_bUseSAO ); 521 521 m_acTEncTop[layer].setTestSAODisableAtPictureLevel ( m_bTestSAODisableAtPictureLevel ); 522 m_acTEncTop[layer].setSaoEncodingRate ( m_saoEncodingRate ); 523 m_acTEncTop[layer].setSaoEncodingRateChroma ( m_saoEncodingRateChroma ); 522 524 m_acTEncTop[layer].setMaxNumOffsetsPerPic ( m_maxNumOffsetsPerPic ); 523 525 … … 954 956 m_cTEncTop.setUseSAO ( m_bUseSAO ); 955 957 m_cTEncTop.setTestSAODisableAtPictureLevel ( m_bTestSAODisableAtPictureLevel ); 958 m_cTEncTop.setSaoEncodingRate ( m_saoEncodingRate ); 959 m_cTEncTop.setSaoEncodingRateChroma ( m_saoEncodingRateChroma ); 956 960 m_cTEncTop.setMaxNumOffsetsPerPic ( m_maxNumOffsetsPerPic); 957 961
Note: See TracChangeset for help on using the changeset viewer.