Changeset 567 in SHVCSoftware for branches/SHM-5.0-dev/source/App/TAppEncoder


Ignore:
Timestamp:
27 Jan 2014, 18:33:04 (11 years ago)
Author:
seregin
Message:

rename layers present SEI to layers not present SEI

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  
    921921  ("SEIGradualDecodingRefreshInfo",  m_gradualDecodingRefreshInfoEnabled,      0, "Control generation of gradual decoding refresh information SEI message")
    922922  ("SEIDecodingUnitInfo",             m_decodingUnitInfoSEIEnabled,                       0, "Control generation of decoding unit information SEI message.")
    923 #if M0043_LAYERS_PRESENT_SEI
    924   ("SEILayersPresent",               m_layersPresentSEIEnabled,                0, "Control generation of layers present SEI message")
     923#if LAYERS_NOT_PRESENT_SEI
     924  ("SEILayersNotPresent",            m_layersNotPresentSEIEnabled,             0, "Control generation of layers not present SEI message")
    925925#endif
    926926  ("SEISOPDescription",              m_SOPDescriptionSEIEnabled,              0, "Control generation of SOP description SEI messages")
  • branches/SHM-5.0-dev/source/App/TAppEncoder/TAppEncCfg.h

    r559 r567  
    280280  Int       m_gradualDecodingRefreshInfoEnabled;
    281281  Int       m_decodingUnitInfoSEIEnabled;
    282 #if M0043_LAYERS_PRESENT_SEI
    283   Int       m_layersPresentSEIEnabled;
     282#if LAYERS_NOT_PRESENT_SEI
     283  Int       m_layersNotPresentSEIEnabled;
    284284#endif
    285285  Int       m_SOPDescriptionSEIEnabled;
  • branches/SHM-5.0-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r564 r567  
    483483    m_acTEncTop[layer].setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled );
    484484    m_acTEncTop[layer].setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled );
    485 #if M0043_LAYERS_PRESENT_SEI
    486     m_acTEncTop[layer].setLayersPresentSEIEnabled( m_layersPresentSEIEnabled );
     485#if LAYERS_NOT_PRESENT_SEI
     486    m_acTEncTop[layer].setLayersNotPresentSEIEnabled( m_layersNotPresentSEIEnabled );
    487487#endif
    488488    m_acTEncTop[layer].setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled );
     
    797797  m_cTEncTop.setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled );
    798798  m_cTEncTop.setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled );
    799 #if M0043_LAYERS_PRESENT_SEI
    800   m_cTEncTop.setLayersPresentSEIEnabled( m_layersPresentSEIEnabled );
     799#if LAYERS_NOT_PRESENT_SEI
     800  m_cTEncTop.setLayersNotPresentSEIEnabled( m_layersNotPresentSEIEnabled );
    801801#endif
    802802  m_cTEncTop.setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled );
Note: See TracChangeset for help on using the changeset viewer.