Changeset 765 in SHVCSoftware


Ignore:
Timestamp:
30 Apr 2014, 01:34:14 (11 years ago)
Author:
seregin
Message:

remove macro ALIGN_TSA_STSA_PICS

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  
    113113#define POC_RESET_INFO_INFERENCE         1      ///< JCTVC-Q0146: Infer the value of poc_reset_info_present_flag when not present
    114114#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.
    116115#define REPN_FORMAT_IN_VPS               1      ///< JCTVC-N0092: Signal represenation format (spatial resolution, bit depth, colour format) in the VPS
    117116#if REPN_FORMAT_IN_VPS
  • branches/SHM-6-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r764 r765  
    11731173  }
    11741174#endif
    1175 #if ALIGN_TSA_STSA_PICS
     1175
     1176  // Alignment of TSA and STSA pictures across AU
    11761177  if( m_apcSlicePilot->getLayerId() > 0 )
    11771178  {
     
    12101211    }
    12111212  }
    1212 #endif
     1213
    12131214#else //SVC_EXTENSION
    12141215  //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  
    12831283      if(pcSlice->isTemporalLayerSwitchingPoint(rcListPic) || pcSlice->getSPS()->getTemporalIdNestingFlag())
    12841284      {
    1285 #if ALIGN_TSA_STSA_PICS
     1285#if SVC_EXTENSION
     1286        // Alignment of TSA pictures across AU
    12861287        if( pcSlice->getLayerId() > 0 )
    12871288        {
     
    13391340          }
    13401341        }
    1341 #else
     1342#else  //SVC_EXTENSION
    13421343        if(pcSlice->getTemporalLayerNonReferenceFlag())
    13431344        {
     
    13481349          pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TSA_R);
    13491350        }
    1350 #endif
     1351#endif //SVC_EXTENSION
    13511352      }
    13521353      else if(pcSlice->isStepwiseTemporalLayerSwitchingPointCandidate(rcListPic))
     
    13821383        if(isSTSA==true)
    13831384        {   
    1384 #if ALIGN_TSA_STSA_PICS
     1385#if SVC_EXTENSION
     1386          // Alignment of STSA pictures across AU
    13851387          if( pcSlice->getLayerId() > 0 )
    13861388          {
     
    14381440            }
    14391441          }
    1440 #else
     1442#else  //SVC_EXTENSION
    14411443          if(pcSlice->getTemporalLayerNonReferenceFlag())
    14421444          {
     
    14471449            pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_STSA_R);
    14481450          }
    1449 #endif
     1451#endif //SVC_EXTENSION
    14501452        }
    14511453      }
Note: See TracChangeset for help on using the changeset viewer.