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


Ignore:
Timestamp:
6 Sep 2013, 01:20:37 (11 years ago)
Author:
qualcomm
Message:

Added byte alignment before VPS extension.

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

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

    r383 r384  
    846846  {
    847847#if VPS_EXTNS
     848    while ( m_pcBitstream->getNumBitsRead() % 8 != 0 )
     849    {
     850      READ_FLAG( uiCode, "vps_extension_alignment_bit_equal_to_one"); assert(uiCode == 1);
     851    }
    848852    parseVPSExtension(pcVPS);
    849853    READ_FLAG( uiCode, "vps_entension2_flag" );
Note: See TracChangeset for help on using the changeset viewer.