Changeset 801 in SHVCSoftware


Ignore:
Timestamp:
11 Jun 2014, 19:22:34 (11 years ago)
Author:
seregin
Message:

rename default_target_output_layer_idc with default_output_layer_idc

Location:
branches/SHM-6-dev/source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r791 r801  
    12581258  if( vps->getDefaultTargetOutputLayerIdc() == 1 )
    12591259  {
    1260     // default_target_output_layer_idc equal to 1 specifies that only the layer with the highest value of nuh_layer_id such that nuh_layer_id equal to nuhLayerIdA and
     1260    // default_output_layer_idc equal to 1 specifies that only the layer with the highest value of nuh_layer_id such that nuh_layer_id equal to nuhLayerIdA and
    12611261    // AuxId[ nuhLayerIdA ] equal to 0 in each of the output layer sets with index in the range of 1 to vps_num_layer_sets_minus1, inclusive, is an output layer of its output layer set.
    12621262
     
    12751275  else
    12761276  {
    1277     // cases when default_target_output_layer_idc is not equal to 1
    1278     assert(!"default_target_output_layer_idc not equal to 1 is not yet supported");
     1277    // cases when default_output_layer_idc is not equal to 1
     1278    assert(!"default_output_layer_idc not equal to 1 is not yet supported");
    12791279  }
    12801280
  • branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h

    r800 r801  
    7777#endif
    7878
    79 #define P0295_DEFAULT_OUT_LAYER_IDC      1      ///< JCTVC-P0295: modifify default_one_target_output_layer_idc to default_target_output_layer_idc
     79#define P0295_DEFAULT_OUT_LAYER_IDC      1      ///< JCTVC-P0295: modifify default_one_target_output_layer_idc to default_output_layer_idc
    8080#define O0109_DEFAULT_ONE_OUT_LAYER_IDC  1      ///< JCTVC-O0109: default_one_target_output_layer_flag to default_one_target_output_layer_idc
    8181#define O0109_MOVE_VPS_VUI_FLAG          1      ///< JCTVC-O0109: move vps_vui_present_flag before vps_vui_offset
  • branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r800 r801  
    13541354  {
    13551355    READ_UVLC( uiCode, "num_add_olss" );            vps->setNumAddOutputLayerSets( uiCode );
    1356     READ_CODE( 2, uiCode, "default_target_output_layer_idc" );   vps->setDefaultTargetOutputLayerIdc( uiCode );
     1356    READ_CODE( 2, uiCode, "default_output_layer_idc" );   vps->setDefaultTargetOutputLayerIdc( uiCode );
    13571357  }
    13581358  else
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r800 r801  
    10311031  {
    10321032    WRITE_UVLC( numAddOutputLayerSets, "num_add_olss" );
    1033     WRITE_CODE( vps->getDefaultTargetOutputLayerIdc(), 2, "default_target_output_layer_idc" );
     1033    WRITE_CODE( vps->getDefaultTargetOutputLayerIdc(), 2, "default_output_layer_idc" );
    10341034  }
    10351035#else
Note: See TracChangeset for help on using the changeset viewer.