Changeset 1219 in SHVCSoftware


Ignore:
Timestamp:
8 Jul 2015, 23:52:07 (9 years ago)
Author:
seregin
Message:

macro cleanup: P0130_EOB

Location:
branches/SHM-dev/source
Files:
3 edited

Legend:

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

    r1214 r1219  
    19051905
    19061906    // write bitstream out
    1907     if(iTotalNumEncoded)
    1908     {
    1909 #if P0130_EOB
     1907    if( iTotalNumEncoded )
     1908    {
    19101909      if( bEos )
    19111910      {
     
    19171916        accessUnit.push_back(new NALUnitEBSP(nalu));
    19181917      }
    1919 #endif
     1918
    19201919      xWriteStream(bitstreamFile, iTotalNumEncoded, outputAccessUnits);
    19211920      outputAccessUnits.clear();
     
    21302129  return;
    21312130}
    2132 #endif
     2131#endif //SVC_EXTENSION
    21332132
    21342133// ====================================================================================================================
  • branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h

    r1218 r1219  
    4646#define MAX_LAYERS                       8      ///< max number of layers the codec is supposed to handle
    4747#define CONFORMANCE_BITSTREAM_MODE       1      ///< In order to generate the metadata related to conformance bitstreams
    48 #define BSP_INIT_ARRIVAL_SEI             1      ///< JCTVC-R0231: Make signalling of vcl_initial_arrival_delay independent of NalHrdBpPresentFlag
    4948
    5049#define Q0177_EOS_CHECKS                 1      ///< JCTVC-Q0177; Put checks on handling EOS
    51 #define P0130_EOB                        1      ///< JCTVC-P0130, set layer Id of EOB NALU to be fixed to 0
    5250#define DISCARDABLE_PIC_RPS              1      ///< JCTVC-P0130: Inter-layer RPS and temporal RPS should not contain picture with discardable_flag equal to 1
    5351#define ALIGNED_BUMPING                  1      ///< JCTVC-P0192: Align bumping of pictures in an AU
     
    121119#endif
    122120#define P0123_ALPHA_CHANNEL_SEI          1      ///< JCTVC-P0123: SEI message for alpha channel information
     121#define BSP_INIT_ARRIVAL_SEI             1      ///< JCTVC-R0231: Make signalling of vcl_initial_arrival_delay independent of NalHrdBpPresentFlag
    123122
    124123/// constants
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r1213 r1219  
    20702070
    20712071    case NAL_UNIT_EOB:
    2072 #if P0130_EOB
     2072#if SVC_EXTENSION
    20732073      //Check layer id of the nalu. if it is not 0, give a warning message.
    20742074      if (nalu.m_layerId > 0)
Note: See TracChangeset for help on using the changeset viewer.