Changeset 1185 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder/SEIread.cpp
- Timestamp:
- 8 Jul 2015, 03:34:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/SEIread.cpp
r1134 r1185 199 199 { 200 200 sei = new SEIDecodingUnitInfo; 201 #if VPS_VUI_BSP_HRD_PARAMS201 #if SVC_EXTENSION 202 202 xParseSEIDecodingUnitInfo((SEIDecodingUnitInfo&) *sei, payloadSize, sps, nestingSei, bspNestingSei, vps, pDecodedMessageOutputStream); 203 203 #else … … 214 214 { 215 215 sei = new SEIBufferingPeriod; 216 #if VPS_VUI_BSP_HRD_PARAMS216 #if SVC_EXTENSION 217 217 xParseSEIBufferingPeriod((SEIBufferingPeriod&) *sei, payloadSize, sps, nestingSei, bspNestingSei, vps, pDecodedMessageOutputStream); 218 218 #else … … 229 229 { 230 230 sei = new SEIPictureTiming; 231 #if VPS_VUI_BSP_HRD_PARAMS231 #if SVC_EXTENSION 232 232 xParseSEIPictureTiming((SEIPictureTiming&)*sei, payloadSize, sps, nestingSei, bspNestingSei, vps, pDecodedMessageOutputStream); 233 233 #else … … 560 560 } 561 561 562 #if VPS_VUI_BSP_HRD_PARAMS562 #if SVC_EXTENSION 563 563 Void SEIReader::xParseSEIDecodingUnitInfo(SEIDecodingUnitInfo& sei, UInt payloadSize, TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, TComVPS *vps,std::ostream *pDecodedMessageOutputStream) 564 564 #else … … 571 571 sei.m_decodingUnitIdx = val; 572 572 573 #if VPS_VUI_BSP_HRD_PARAMS573 #if SVC_EXTENSION 574 574 TComHRD *hrd; 575 575 if( bspNestingSei ) // If DU info SEI contained inside a BSP nesting SEI message … … 645 645 } 646 646 647 #if VPS_VUI_BSP_HRD_PARAMS647 #if SVC_EXTENSION 648 648 Void SEIReader::xParseSEIBufferingPeriod(SEIBufferingPeriod& sei, UInt payloadSize, TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, TComVPS *vps, std::ostream *pDecodedMessageOutputStream) 649 649 #else … … 654 654 UInt code; 655 655 656 #if VPS_VUI_BSP_HRD_PARAMS656 #if SVC_EXTENSION 657 657 TComHRD *pHRD; 658 658 if( bspNestingSei ) // If BP SEI contained inside a BSP nesting SEI message … … 749 749 } 750 750 751 #if VPS_VUI_BSP_HRD_PARAMS751 #if SVC_EXTENSION 752 752 Void SEIReader::xParseSEIPictureTiming(SEIPictureTiming& sei, UInt payloadSize, TComSPS *sps, const SEIScalableNesting* nestingSei, const SEIBspNesting* bspNestingSei, TComVPS *vps, std::ostream *pDecodedMessageOutputStream) 753 753 #else … … 758 758 UInt code; 759 759 760 #if VPS_VUI_BSP_HRD_PARAMS760 #if SVC_EXTENSION 761 761 TComHRD *hrd; 762 762 TComVUI *vui = sps->getVuiParameters(); … … 1548 1548 assert(vps->getVpsVuiPresentFlag()); 1549 1549 1550 #if VPS_VUI_BSP_HRD_PARAMS1550 #if SVC_EXTENSION 1551 1551 UInt uiCode; 1552 1552 Int psIdx = bspNestingSei.m_seiPartitioningSchemeIdx;
Note: See TracChangeset for help on using the changeset viewer.