Changeset 937 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder
- Timestamp:
- 26 Dec 2014, 20:41:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r908 r937 237 237 assert( pcPPS->getScalingListRefLayerId() <= 62 ); 238 238 239 WRITE_ UVLC( pcPPS->getScalingListRefLayerId(), "pps_scaling_list_ref_layer_id" );239 WRITE_CODE( pcPPS->getScalingListRefLayerId(), 6, "pps_scaling_list_ref_layer_id" ); 240 240 } 241 241 else … … 355 355 // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive 356 356 assert( pcPPS->getScalingListRefLayerId() <= 62 ); 357 WRITE_ UVLC( pcPPS->getScalingListRefLayerId(), "pps_scaling_list_ref_layer_id" );357 WRITE_CODE( pcPPS->getScalingListRefLayerId(), 6, "pps_scaling_list_ref_layer_id" ); 358 358 } 359 359 #endif … … 796 796 assert( pcSPS->getScalingListRefLayerId() <= 62 ); 797 797 798 WRITE_ UVLC( pcSPS->getScalingListRefLayerId(), "sps_scaling_list_ref_layer_id" );798 WRITE_CODE( pcSPS->getScalingListRefLayerId(), 6, "sps_scaling_list_ref_layer_id" ); 799 799 } 800 800 else
Note: See TracChangeset for help on using the changeset viewer.