Changeset 937 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 26 Dec 2014, 20:41:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r923 r937 305 305 if( pcPPS->getInferScalingListFlag() ) 306 306 { 307 READ_ UVLC(uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setScalingListRefLayerId( uiCode );307 READ_CODE( 6, uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setScalingListRefLayerId( uiCode ); 308 308 309 309 // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive … … 479 479 if( pcPPS->getInferScalingListFlag() ) 480 480 { 481 READ_ UVLC(uiCode, "pps_scaling_list_ref_layer_id" );481 READ_CODE( 6, uiCode, "pps_scaling_list_ref_layer_id" ); 482 482 pcPPS->setScalingListRefLayerId( uiCode ); 483 483 // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive … … 1043 1043 if( pcSPS->getInferScalingListFlag() ) 1044 1044 { 1045 READ_ UVLC(uiCode, "sps_scaling_list_ref_layer_id" ); pcSPS->setScalingListRefLayerId( uiCode );1046 1047 // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive1045 READ_CODE( 6, uiCode, "sps_scaling_list_ref_layer_id" ); pcSPS->setScalingListRefLayerId( uiCode ); 1046 1047 // The value of sps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive 1048 1048 assert( pcSPS->getScalingListRefLayerId() <= 62 ); 1049 1049
Note: See TracChangeset for help on using the changeset viewer.