Changeset 376 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
28 Aug 2013, 23:06:53 (11 years ago)
Author:
qualcomm
Message:

JCTVC-N0085: Related to timing and HRD information in SPS VUI (MACRO: TIMING_INFO_NONZERO_LAYERID_SPS).

No timing and HRD information in VUI for SPS with nuh_layer_id > 0

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r363 r376  
    377377  TimingInfo *timingInfo = pcVUI->getTimingInfo();
    378378  READ_FLAG(       uiCode, "vui_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
     379#if TIMING_INFO_NONZERO_LAYERID_SPS
     380  if( pcSPS->getLayerId() > 0 )
     381  {
     382    assert( timingInfo->getTimingInfoPresentFlag() == false );
     383  }
     384#endif
    379385  if(timingInfo->getTimingInfoPresentFlag())
    380386  {
Note: See TracChangeset for help on using the changeset viewer.