Changeset 1137 in SHVCSoftware for branches/SHM-dev
- Timestamp:
- 7 Jul 2015, 23:15:25 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h
r1136 r1137 635 635 UInt m_layerIdxInVps[MAX_NUM_LAYER_IDS]; // Maps layer_id_in_nuh with the layer ID in the VPS 636 636 #endif 637 #if BITRATE_PICRATE_SIGNALLING638 637 #if Q0078_ADD_LAYER_SETS 639 638 UInt m_maxSLInLayerSetMinus1[MAX_VPS_LAYER_SETS_PLUS1 + MAX_NUM_ADD_LAYER_SETS]; … … 641 640 UInt m_maxSLInLayerSetMinus1[MAX_VPS_LAYER_SETS_PLUS1]; 642 641 #endif 643 #endif644 645 642 Bool m_ilpSshSignalingEnabledFlag; 646 643 #if VPS_EXTN_PROFILE_INFO … … 1005 1002 Void setLayerIdxInVps(Int layerId, UInt layerIdx) { m_layerIdxInVps[layerId] = layerIdx; } 1006 1003 #endif 1007 #if BITRATE_PICRATE_SIGNALLING1008 1004 UInt getMaxSLayersInLayerSetMinus1(Int ls) { return m_maxSLInLayerSetMinus1[ls]; } 1009 1005 Void setMaxSLayersInLayerSetMinus1(Int ls, Int x) { m_maxSLInLayerSetMinus1[ls] = x; } 1010 #endif1011 1006 Bool getIlpSshSignalingEnabledFlag() { return m_ilpSshSignalingEnabledFlag;} 1012 1007 Void setIlpSshSignalingEnabledFlag(Bool x) { m_ilpSshSignalingEnabledFlag = x;} -
branches/SHM-dev/source/Lib/TLibCommon/TypeDef.h
r1136 r1137 196 196 #define P0138_USE_ALT_CPB_PARAMS_FLAG 1 ///< JCTVC-P0138: use_alt_cpb_params_flag syntax in buffering period SEI message extension 197 197 #define P0166_MODIFIED_PPS_EXTENSION 1 ///< JCTVC-P0166: add pps_extension_type_flag 198 #define BITRATE_PICRATE_SIGNALLING 1 ///< JCTVC-Q0102 Proposal 3 signal bitrate, picrate only up to the maximum temporal sub-layers in the corresponding layer set199 198 #define LAYER_DECPICBUFF_PARAM 1 ///< JCTVC-Q0102 Proposal 2 infer value from layer DPB param 200 199 #define HRD_BPB 1 ///< JCTVC-Q0101 Bitstream Partition Buffering Proposals -
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r1136 r1137 2480 2480 #endif 2481 2481 { 2482 #if BITRATE_PICRATE_SIGNALLING2483 2482 for( j = 0; j <= vps->getMaxSLayersInLayerSetMinus1(i); j++ ) 2484 #else2485 for( j = 0; j < vps->getMaxTLayers(); j++ )2486 #endif2487 2483 { 2488 2484 if( vps->getBitRatePresentVpsFlag() )
Note: See TracChangeset for help on using the changeset viewer.