Ignore:
Timestamp:
29 Jul 2014, 00:31:31 (10 years ago)
Author:
qualcomm
Message:

JCTVC-R0221: Changes to BSP nesting SEI (Macro: NESTING_SEI_EXTENSIBILITY)

Include signalling the number of SEI messages in bitstream partition nesting SEI message.

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

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

    r846 r847  
    12341234
    12351235  // read nested SEI messages
     1236#if NESTING_SEI_EXTENSIBILITY
     1237  Int numSeiMessages = 0;
     1238  READ_UVLC( uiCode, "num_seis_in_bsp_minus1" );  assert( uiCode <= MAX_SEIS_IN_BSP_NESTING );
     1239  numSeiMessages = uiCode;
     1240  for(Int i = 0; i < numSeiMessages; i++)
     1241  {
     1242    xReadSEImessage(sei.m_nestedSEIs, nalUnitType, vps, sps, &nestingSei, &sei);
     1243  }
     1244#else
    12361245  do {
    12371246#if LAYERS_NOT_PRESENT_SEI
     
    12411250#endif
    12421251  } while (m_pcBitstream->getNumBitsLeft() > 8);
     1252#endif
    12431253}
    12441254
Note: See TracChangeset for help on using the changeset viewer.