Changeset 765 in SHVCSoftware
- Timestamp:
- 30 Apr 2014, 01:34:14 (11 years ago)
- Location:
- branches/SHM-6-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h
r764 r765 113 113 #define POC_RESET_INFO_INFERENCE 1 ///< JCTVC-Q0146: Infer the value of poc_reset_info_present_flag when not present 114 114 #define NO_OUTPUT_OF_PRIOR_PICS 1 ///< Use no_output_of_prior_pics_flag 115 #define ALIGN_TSA_STSA_PICS 1 ///< JCTVC-N0084: Alignment of TSA and STSA pictures across AU.116 115 #define REPN_FORMAT_IN_VPS 1 ///< JCTVC-N0092: Signal represenation format (spatial resolution, bit depth, colour format) in the VPS 117 116 #if REPN_FORMAT_IN_VPS -
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecTop.cpp
r764 r765 1173 1173 } 1174 1174 #endif 1175 #if ALIGN_TSA_STSA_PICS 1175 1176 // Alignment of TSA and STSA pictures across AU 1176 1177 if( m_apcSlicePilot->getLayerId() > 0 ) 1177 1178 { … … 1210 1211 } 1211 1212 } 1212 #endif 1213 1213 1214 #else //SVC_EXTENSION 1214 1215 //we should only get a different poc for a new picture (with CTU address==0) -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r764 r765 1283 1283 if(pcSlice->isTemporalLayerSwitchingPoint(rcListPic) || pcSlice->getSPS()->getTemporalIdNestingFlag()) 1284 1284 { 1285 #if ALIGN_TSA_STSA_PICS 1285 #if SVC_EXTENSION 1286 // Alignment of TSA pictures across AU 1286 1287 if( pcSlice->getLayerId() > 0 ) 1287 1288 { … … 1339 1340 } 1340 1341 } 1341 #else 1342 #else //SVC_EXTENSION 1342 1343 if(pcSlice->getTemporalLayerNonReferenceFlag()) 1343 1344 { … … 1348 1349 pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TSA_R); 1349 1350 } 1350 #endif 1351 #endif //SVC_EXTENSION 1351 1352 } 1352 1353 else if(pcSlice->isStepwiseTemporalLayerSwitchingPointCandidate(rcListPic)) … … 1382 1383 if(isSTSA==true) 1383 1384 { 1384 #if ALIGN_TSA_STSA_PICS 1385 #if SVC_EXTENSION 1386 // Alignment of STSA pictures across AU 1385 1387 if( pcSlice->getLayerId() > 0 ) 1386 1388 { … … 1438 1440 } 1439 1441 } 1440 #else 1442 #else //SVC_EXTENSION 1441 1443 if(pcSlice->getTemporalLayerNonReferenceFlag()) 1442 1444 { … … 1447 1449 pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_STSA_R); 1448 1450 } 1449 #endif 1451 #endif //SVC_EXTENSION 1450 1452 } 1451 1453 }
Note: See TracChangeset for help on using the changeset viewer.