Changeset 660 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
10 Apr 2014, 01:39:56 (11 years ago)
Author:
seregin
Message:

constraint for vps_num_rep_formats_minus1

File:
1 edited

Legend:

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

    r659 r660  
    14531453    vps->setVpsNumRepFormats( vps->getMaxLayers() );
    14541454  }
     1455
     1456  // The value of vps_num_rep_formats_minus1 shall be in the range of 0 to 255, inclusive.
     1457  assert( vps->getVpsNumRepFormats() > 0 && vps->getVpsNumRepFormats() <= 256 );
     1458
    14551459  for(i = 0; i < vps->getVpsNumRepFormats(); i++)
    14561460  {
Note: See TracChangeset for help on using the changeset viewer.