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

Added byte alignment before parsing VPS VUI

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

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

    r382 r383  
    11501150  {
    11511151#if VPS_VUI
     1152    while ( m_pcBitstream->getNumBitsRead() % 8 != 0 )
     1153    {
     1154      READ_FLAG( uiCode, "vps_vui_alignment_bit_equal_to_one"); assert(uiCode == 1);
     1155    }
    11521156    parseVPSVUI(vps);
    11531157#endif
Note: See TracChangeset for help on using the changeset viewer.