Changeset 1485 in SHVCSoftware for branches/SHM-dev/source/App


Ignore:
Timestamp:
4 Nov 2015, 03:25:23 (9 years ago)
Author:
seregin
Message:

ignore NAL unit with layerId equal to 63

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppDecoder/TAppDecTop.cpp

    r1479 r1485  
    234234    {
    235235      read(nalu);
     236
     237#if SVC_EXTENSION
     238      // ignore any NAL units with nuh_layer_id == 63
     239      if( nalu.m_nuhLayerId == 63 )
     240      {
     241        printf("Ignore NAL unit with m_nuhLayerId equal to 63\n");
     242        continue;
     243      }
     244#endif
     245
    236246      if( (m_iMaxTemporalLayer >= 0 && nalu.m_temporalId > m_iMaxTemporalLayer) || !isNaluWithinTargetDecLayerIdSet(&nalu)  ||
    237247#if CONFORMANCE_BITSTREAM_MODE
Note: See TracChangeset for help on using the changeset viewer.