Changeset 847 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder


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/TLibEncoder/SEIwrite.cpp

    r846 r847  
    903903    WRITE_FLAG( 0, "bsp_nesting_zero_bit" );
    904904  }
    905 
     905#if NESTING_SEI_EXTENSIBILITY
     906  assert( sei.m_nestedSEIs.size() <= MAX_SEIS_IN_BSP_NESTING );
     907  WRITE_UVLC( sei.m_nestedSEIs.size(), "num_seis_in_bsp_minus1" );
     908#endif
    906909  // write nested SEI messages
    907910  for (SEIMessages::const_iterator it = sei.m_nestedSEIs.begin(); it != sei.m_nestedSEIs.end(); it++)
Note: See TracChangeset for help on using the changeset viewer.