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


Ignore:
Timestamp:
4 Oct 2013, 02:16:14 (11 years ago)
Author:
qualcomm
Message:

N0085: nuh_layer_id value of VPS NALU (MACRO: VPS_NUH_LAYER_ID)

Added assert statement in the decoder to ensure that the value of nuh_layer_id of VPS NAL unit shall be equal to 0. In the encoder, the value of nuh_layer_id of VPS would always be 0.

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

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

    r405 r408  
    13151315  {
    13161316    case NAL_UNIT_VPS:
     1317#if VPS_NUH_LAYER_ID
     1318      assert( nalu.m_layerId == 0 ); // Non-conforming bitstream. The value of nuh_layer_id of VPS NAL unit shall be equal to 0.
     1319#endif
    13171320      xDecodeVPS();
    13181321#if AVC_BASE
Note: See TracChangeset for help on using the changeset viewer.