Opened 9 years ago

Closed 9 years ago

#95 closed defect (fixed)

Writing/parsing of pps_scaling_list_ref_layer_id does not depend on pps_infer_scaling_list_flag

Reported by: hallapur Owned by: tech
Priority: minor Component: HTM software
Version: HTM-13.0 Keywords:
Cc: tech, jct-3v@…

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 9 years ago by DefaultCC Plugin

  • Cc tech jct-3v@… added

comment:2 Changed 9 years ago by tech

  • Resolution set to fixed
  • Status changed from new to closed
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

  • Gerhard Tech(Owner, Subscriber, Participant, Always)
  • hallapur(Reporter)
  • jct-3v@…(Subscriber)
  • Karsten Suehring(Always)