Changeset 292 in SHVCSoftware for branches/SHM-2.1-dev/source/App/TAppEncoder


Ignore:
Timestamp:
18 Jun 2013, 23:11:33 (12 years ago)
Author:
vidyo
Message:

Implementation of M0043 - Layers Present SEI.
This is disabled by default. Enable this by setting M0043_LAYERS_PRESENT_SEI to 1

Location:
branches/SHM-2.1-dev/source/App/TAppEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-2.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r290 r292  
    821821  ("SEIGradualDecodingRefreshInfo",  m_gradualDecodingRefreshInfoEnabled,      0, "Control generation of gradual decoding refresh information SEI message")
    822822  ("SEIDecodingUnitInfo",             m_decodingUnitInfoSEIEnabled,                       0, "Control generation of decoding unit information SEI message.")
     823#if M0043_LAYERS_PRESENT_SEI
     824  ("SEILayersPresent",               m_layersPresentSEIEnabled,                0, "Control generation of layers present SEI message")
     825#endif
    823826#if L0208_SOP_DESCRIPTION_SEI
    824827  ("SEISOPDescription",              m_SOPDescriptionSEIEnabled,              0, "Control generation of SOP description SEI messages")
  • branches/SHM-2.1-dev/source/App/TAppEncoder/TAppEncCfg.h

    r288 r292  
    274274  Int       m_gradualDecodingRefreshInfoEnabled;
    275275  Int       m_decodingUnitInfoSEIEnabled;
     276#if M0043_LAYERS_PRESENT_SEI
     277  Int       m_layersPresentSEIEnabled;
     278#endif
    276279#if L0208_SOP_DESCRIPTION_SEI
    277280  Int       m_SOPDescriptionSEIEnabled;
  • branches/SHM-2.1-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r290 r292  
    388388    m_acTEncTop[layer].setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled );
    389389    m_acTEncTop[layer].setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled );
     390#if M0043_LAYERS_PRESENT_SEI
     391    m_acTEncTop[layer].setLayersPresentSEIEnabled( m_layersPresentSEIEnabled );
     392#endif
    390393#if L0208_SOP_DESCRIPTION_SEI
    391394    m_acTEncTop[layer].setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled );
     
    725728  m_cTEncTop.setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled );
    726729  m_cTEncTop.setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled );
     730#if M0043_LAYERS_PRESENT_SEI
     731  m_cTEncTop.setLayersPresentSEIEnabled( m_layersPresentSEIEnabled );
     732#endif
    727733#if L0208_SOP_DESCRIPTION_SEI
    728734  m_cTEncTop.setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled );
Note: See TracChangeset for help on using the changeset viewer.