Changeset 862 in 3DVCSoftware for branches/HTM-10.0-dev0/source/Lib/TLibCommon
- Timestamp:
- 5 Mar 2014, 03:54:16 (11 years ago)
- Location:
- branches/HTM-10.0-dev0/source/Lib/TLibCommon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.0-dev0/source/Lib/TLibCommon/SEI.h
r852 r862 72 72 SCALABLE_NESTING = 133, 73 73 REGION_REFRESH_INFO = 134, 74 #if H_MV_HLS_7_SEI_P0204_26 75 SUB_BITSTREAM_PROPERTY = 139, // Final PayloadType to be defined after finalization 76 #endif 74 77 }; 75 78 … … 363 366 }; 364 367 368 #if H_MV_HLS_7_SEI_P0204_26 369 class SEISubBitstreamProperty : public SEI 370 { 371 public: 372 PayloadType payloadType() const { return SUB_BITSTREAM_PROPERTY; } 373 374 SEISubBitstreamProperty(): m_activeVpsId(-1), m_numAdditionalSubStreams(0) {} 375 virtual ~SEISubBitstreamProperty() {} 376 377 Int m_activeVpsId; 378 Int m_numAdditionalSubStreams; 379 std::vector<Int> m_subBitstreamMode; 380 std::vector<Int> m_outputLayerSetIdxToVps; 381 std::vector<Int> m_highestSublayerId; 382 std::vector<Int> m_avgBitRate; 383 std::vector<Int> m_maxBitRate; 384 }; 385 #endif 386 365 387 typedef std::list<SEI*> SEIMessages; 366 388 -
branches/HTM-10.0-dev0/source/Lib/TLibCommon/TypeDef.h
r859 r862 339 339 // #define H_MV_HLS_7_POC_P0041_3 0 // (POC/P0041/POC reset) #3 It was remarked that we should require each non-IRAP picture that has discardable_flag equal to 1 to have NUT value indicating that it is a sub-layer non-reference picture. This was agreed. Decision: Adopt (with constraint for discardable_flag as described above) 340 340 // #define H_MV_HLS_7_POC_P0041_FIXES 0 // (POC/P0041/Fixes) For each non-IRAP picture that has discardable_flag equal to 1 to have NUT value indicating that it is a sub-layer non-reference picture. 341 // #define H_MV_HLS_7_SEI_P0204_26 0// (SEI/P0204/sub-bitstream SEI) #26 Add sub-bitstream property SEI message. Decision: Adopt341 #define H_MV_HLS_7_SEI_P0204_26 1 // (SEI/P0204/sub-bitstream SEI) #26 Add sub-bitstream property SEI message. Decision: Adopt 342 342 #define H_MV_HLS_7_MISC_P0130_20 1 // (MISC/P0130/discardable not in inter-layer RPS) #20 Add constraint restricting pictures marked as discardable from being present in the temporal or inter-layer RPS, 343 343 … … 416 416 #define MAX_NUM_BITSTREAM_PARTITIONS 100 ///< Maximum value is actually not specified 417 417 #define MAX_NUM_BSP_SCHED_COMBINATION 100 ///< Maximum value is actually not specified 418 #if H_MV_HLS_7_SEI_P0204_26 419 #define MAX_SUB_STREAMS 1024 420 #endif 418 421 #else 419 422 #define MAX_NUM_LAYER_IDS 64
Note: See TracChangeset for help on using the changeset viewer.