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


Ignore:
Timestamp:
11 Jun 2014, 19:20:48 (12 years ago)
Author:
seregin
Message:

rename num_add_output_layer_sets with num_add_olss

File:
1 edited

Legend:

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

    r799 r800  
    13531353  if( vps->getNumLayerSets() > 1 )
    13541354  {
    1355     READ_UVLC( uiCode, "num_add_output_layer_sets" );            vps->setNumAddOutputLayerSets( uiCode );
     1355    READ_UVLC( uiCode, "num_add_olss" );            vps->setNumAddOutputLayerSets( uiCode );
    13561356    READ_CODE( 2, uiCode, "default_target_output_layer_idc" );   vps->setDefaultTargetOutputLayerIdc( uiCode );
    13571357  }
     
    13641364#endif
    13651365
    1366   // The value of num_add_output_layer_sets shall be in the range of 0 to 1023, inclusive.
     1366  // The value of num_add_olss shall be in the range of 0 to 1023, inclusive.
    13671367  assert( vps->getNumAddOutputLayerSets() >= 0 && vps->getNumAddOutputLayerSets() < 1024 );
    13681368
     
    18361836  }
    18371837 
    1838   // When not present, the value of num_add_output_layer_sets is inferred to be equal to 0.
    1839   // NumOutputLayerSets = num_add_output_layer_sets + vps_num_layer_sets_minus1 + 1
     1838  // When not present, the value of num_add_olss is inferred to be equal to 0.
     1839  // NumOutputLayerSets = num_add_olss + NumLayerSets
    18401840  vps->setNumOutputLayerSets( vps->getNumLayerSets() );
    18411841
Note: See TracChangeset for help on using the changeset viewer.