Opened 10 years ago Closed 10 years ago #95 closed defect (fixed)Writing/parsing of pps_scaling_list_ref_layer_id does not depend on pps_infer_scaling_list_flag
Description
This is a mismatch between the SW and the spec. As per spec, writing and parsing of pps_scaling_list_ref_layer_id syntax element should only happen when pps_infer_scaling_list_flag is equal to 1.
The condition should be added to the encoder and the decoder: if (pcPPS->getPpsInferScalingListFlag()) { WRITE_CODE(pcPPS->getPpsScalingListRefLayerId(), 6, "pps_scaling_list_ref_layer_id"); } if (pcPPS->getPpsInferScalingListFlag()) { READ_CODE( 6, uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setPpsScalingListRefLayerId( uiCode ); } Change history (2)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 Changed 10 years ago by tech
Note: See TracTickets for help on using tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|