Changeset 800 in SHVCSoftware


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

rename num_add_output_layer_sets with num_add_olss

Location:
branches/SHM-6-dev/source/Lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h

    r798 r800  
    199199
    200200#define Q0165_OUTPUT_LAYER_SET           1      ///< JCTVC-Q0165: add a constraint to disallow an empty output layer set
    201 #define Q0165_NUM_ADD_OUTPUT_LAYER_SETS  1      ///< JCTVC-Q0165: signal num_add_output_layer_set and default_target_output_layer_idc when vps_num_layer_sets_minus1 is greater than 0
     201#define Q0165_NUM_ADD_OUTPUT_LAYER_SETS  1      ///< JCTVC-Q0165: signal num_add_olss and default_target_output_layer_idc when vps_num_layer_sets_minus1 is greater than 0
    202202
    203203#define Q0078_ADD_LAYER_SETS             1      ///< JCTVC-Q0078: additional layer sets and layer set config
  • 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
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r798 r800  
    10241024  Int numAddOutputLayerSets = numOutputLayerSets - (Int)vps->getNumLayerSets();
    10251025
    1026   // The value of num_add_output_layer_sets shall be in the range of 0 to 1023, inclusive.
     1026  // The value of num_add_olss shall be in the range of 0 to 1023, inclusive.
    10271027  assert( numAddOutputLayerSets >= 0 && numAddOutputLayerSets < 1024 );
    10281028
     
    10301030  if( vps->getNumLayerSets() > 1 )
    10311031  {
    1032     WRITE_UVLC( numAddOutputLayerSets, "num_add_output_layer_sets" );
     1032    WRITE_UVLC( numAddOutputLayerSets, "num_add_olss" );
    10331033    WRITE_CODE( vps->getDefaultTargetOutputLayerIdc(), 2, "default_target_output_layer_idc" );
    10341034  }
Note: See TracChangeset for help on using the changeset viewer.