Changeset 801 in SHVCSoftware
- Timestamp:
- 11 Jun 2014, 19:22:34 (11 years ago)
- Location:
- branches/SHM-6-dev/source
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/App/TAppEncoder/TAppEncTop.cpp
r791 r801 1258 1258 if( vps->getDefaultTargetOutputLayerIdc() == 1 ) 1259 1259 { 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 and1260 // 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 1261 1261 // 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. 1262 1262 … … 1275 1275 else 1276 1276 { 1277 // cases when default_ target_output_layer_idc is not equal to 11278 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"); 1279 1279 } 1280 1280 -
branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h
r800 r801 77 77 #endif 78 78 79 #define P0295_DEFAULT_OUT_LAYER_IDC 1 ///< JCTVC-P0295: modifify default_one_target_output_layer_idc to default_ target_output_layer_idc79 #define P0295_DEFAULT_OUT_LAYER_IDC 1 ///< JCTVC-P0295: modifify default_one_target_output_layer_idc to default_output_layer_idc 80 80 #define O0109_DEFAULT_ONE_OUT_LAYER_IDC 1 ///< JCTVC-O0109: default_one_target_output_layer_flag to default_one_target_output_layer_idc 81 81 #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 1354 1354 { 1355 1355 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 ); 1357 1357 } 1358 1358 else -
branches/SHM-6-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r800 r801 1031 1031 { 1032 1032 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" ); 1034 1034 } 1035 1035 #else
Note: See TracChangeset for help on using the changeset viewer.