Changeset 567 in SHVCSoftware for branches/SHM-5.0-dev/source/App/TAppEncoder
- Timestamp:
- 27 Jan 2014, 18:33:04 (11 years ago)
- Location:
- branches/SHM-5.0-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-5.0-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r560 r567 921 921 ("SEIGradualDecodingRefreshInfo", m_gradualDecodingRefreshInfoEnabled, 0, "Control generation of gradual decoding refresh information SEI message") 922 922 ("SEIDecodingUnitInfo", m_decodingUnitInfoSEIEnabled, 0, "Control generation of decoding unit information SEI message.") 923 #if M0043_LAYERS_PRESENT_SEI924 ("SEILayers Present", m_layersPresentSEIEnabled, 0, "Control generation of layerspresent SEI message")923 #if LAYERS_NOT_PRESENT_SEI 924 ("SEILayersNotPresent", m_layersNotPresentSEIEnabled, 0, "Control generation of layers not present SEI message") 925 925 #endif 926 926 ("SEISOPDescription", m_SOPDescriptionSEIEnabled, 0, "Control generation of SOP description SEI messages") -
branches/SHM-5.0-dev/source/App/TAppEncoder/TAppEncCfg.h
r559 r567 280 280 Int m_gradualDecodingRefreshInfoEnabled; 281 281 Int m_decodingUnitInfoSEIEnabled; 282 #if M0043_LAYERS_PRESENT_SEI283 Int m_layers PresentSEIEnabled;282 #if LAYERS_NOT_PRESENT_SEI 283 Int m_layersNotPresentSEIEnabled; 284 284 #endif 285 285 Int m_SOPDescriptionSEIEnabled; -
branches/SHM-5.0-dev/source/App/TAppEncoder/TAppEncTop.cpp
r564 r567 483 483 m_acTEncTop[layer].setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled ); 484 484 m_acTEncTop[layer].setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled ); 485 #if M0043_LAYERS_PRESENT_SEI486 m_acTEncTop[layer].setLayers PresentSEIEnabled( m_layersPresentSEIEnabled );485 #if LAYERS_NOT_PRESENT_SEI 486 m_acTEncTop[layer].setLayersNotPresentSEIEnabled( m_layersNotPresentSEIEnabled ); 487 487 #endif 488 488 m_acTEncTop[layer].setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled ); … … 797 797 m_cTEncTop.setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled ); 798 798 m_cTEncTop.setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled ); 799 #if M0043_LAYERS_PRESENT_SEI800 m_cTEncTop.setLayers PresentSEIEnabled( m_layersPresentSEIEnabled );799 #if LAYERS_NOT_PRESENT_SEI 800 m_cTEncTop.setLayersNotPresentSEIEnabled( m_layersNotPresentSEIEnabled ); 801 801 #endif 802 802 m_cTEncTop.setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled );
Note: See TracChangeset for help on using the changeset viewer.