Changeset 891 in SHVCSoftware


Ignore:
Timestamp:
25 Sep 2014, 23:27:10 (10 years ago)
Author:
sharp
Message:
  1. Deshpande (Sharp) <sdeshpande@…>

JCTVC-R0153 external base layer related signaling

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

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h

    r889 r891  
    257257#define HRD_BPB                          1      ///< JCTVC-Q0101 Bitstream Partition Buffering Proposals
    258258#define DPB_CONSTRAINTS                  1      ///< JCTVC-Q0100 RPS DPB constraints
    259 
     259#define DPB_INTERNAL_BL_SIG              1      ///< JCTVC-R0153: external base layer
    260260#define R0340_RESAMPLING_MODIFICATION    1      ///< JCTVC-R0340: set of changes regarding resampling (as listed below)
    261261#if R0340_RESAMPLING_MODIFICATION
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r889 r891  
    22062206#endif
    22072207        {
     2208#if DPB_INTERNAL_BL_SIG
     2209            uiCode=0;
     2210        if(vps->getBaseLayerInternalFlag()  || ( vps->getLayerSetLayerIdList(layerSetIdxForOutputLayerSet, k)   !=  0 ) )
     2211#endif
    22082212          READ_UVLC( uiCode, "max_vps_dec_pic_buffering_minus1[i][k][j]" ); vps->setMaxVpsDecPicBufferingMinus1( i, k, j, uiCode );
    22092213        }
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r889 r891  
    15751575#endif
    15761576        {
    1577           WRITE_UVLC( vps->getMaxVpsDecPicBufferingMinus1( i, k, j), "max_vps_dec_pic_buffering_minus1[i][k][j]" );
     1577#if DPB_INTERNAL_BL_SIG
     1578        if(vps->getBaseLayerInternalFlag()  || ( vps->getLayerSetLayerIdList(layerSetIdxForOutputLayerSet, k)   !=  0 ) )
     1579#endif
     1580          WRITE_UVLC( vps->getMaxVpsDecPicBufferingMinus1( i, k, j), "max_vps_dec_pic_buffering_minus1[i][k][j]" );
    15781581        }
    15791582        WRITE_UVLC( vps->getMaxVpsNumReorderPics( i, j), "max_vps_num_reorder_pics[i][j]" );             
Note: See TracChangeset for help on using the changeset viewer.