Changeset 512 in SHVCSoftware for branches/SHM-4.1-dev/source/App


Ignore:
Timestamp:
5 Dec 2013, 15:23:55 (11 years ago)
Author:
nokia
Message:

Add alt_output_layer_flag (JCTVC-O0153)

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

Legend:

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

    r507 r512  
    970970  ("IlNumSetsInMessage",               m_ilNumSetsInMessage,                         0u, "Number of inter layer constrained tile sets")
    971971  ("TileSetsArray",                    cfg_tileSets,                         string(""), "Array containing tile sets params (TopLeftTileIndex, BottonRightTileIndex and ilcIdc for each set) ")
     972#endif
     973#if O0153_ALT_OUTPUT_LAYER_FLAG
     974  ("AltOutputLayerFlag",               m_altOutputLayerFlag,                      false, "Specifies the value of alt_output_layer_flag in VPS extension")
    972975#endif
    973976  ;
  • branches/SHM-4.1-dev/source/App/TAppEncoder/TAppEncCfg.h

    r494 r512  
    358358  Int       m_log2MaxMvLengthHorizontal;                      ///< Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units
    359359  Int       m_log2MaxMvLengthVertical;                        ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units
     360#if O0153_ALT_OUTPUT_LAYER_FLAG
     361  Bool      m_altOutputLayerFlag;                             ///< Specifies the value of alt_output_laye_flag in VPS extension
     362#endif
    360363
    361364#if SVC_EXTENSION
  • branches/SHM-4.1-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r507 r512  
    618618    m_acTEncTop[layer].setChromaFormatIDC( m_acLayerCfg[layer].m_chromaFormatIDC );
    619619#endif
     620#if O0153_ALT_OUTPUT_LAYER_FLAG
     621    m_acTEncTop[layer].setAltOuputLayerFlag( m_altOutputLayerFlag );
     622#endif
    620623  }
    621624}
     
    13071310#endif
    13081311
     1312#if O0153_ALT_OUTPUT_LAYER_FLAG
     1313  vps->setAltOuputLayerFlag( m_altOutputLayerFlag );
     1314#endif
     1315
    13091316#else //SVC_EXTENSION
    13101317  m_cTEncTop.init(isFieldCoding);
Note: See TracChangeset for help on using the changeset viewer.