Changeset 891 in SHVCSoftware
- Timestamp:
- 25 Sep 2014, 23:27:10 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r889 r891 257 257 #define HRD_BPB 1 ///< JCTVC-Q0101 Bitstream Partition Buffering Proposals 258 258 #define DPB_CONSTRAINTS 1 ///< JCTVC-Q0100 RPS DPB constraints 259 259 #define DPB_INTERNAL_BL_SIG 1 ///< JCTVC-R0153: external base layer 260 260 #define R0340_RESAMPLING_MODIFICATION 1 ///< JCTVC-R0340: set of changes regarding resampling (as listed below) 261 261 #if R0340_RESAMPLING_MODIFICATION -
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r889 r891 2206 2206 #endif 2207 2207 { 2208 #if DPB_INTERNAL_BL_SIG 2209 uiCode=0; 2210 if(vps->getBaseLayerInternalFlag() || ( vps->getLayerSetLayerIdList(layerSetIdxForOutputLayerSet, k) != 0 ) ) 2211 #endif 2208 2212 READ_UVLC( uiCode, "max_vps_dec_pic_buffering_minus1[i][k][j]" ); vps->setMaxVpsDecPicBufferingMinus1( i, k, j, uiCode ); 2209 2213 } -
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r889 r891 1575 1575 #endif 1576 1576 { 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]" ); 1578 1581 } 1579 1582 WRITE_UVLC( vps->getMaxVpsNumReorderPics( i, j), "max_vps_num_reorder_pics[i][j]" );
Note: See TracChangeset for help on using the changeset viewer.