Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 96)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#95 fixed Writing/parsing of pps_scaling_list_ref_layer_id does not depend on pps_infer_scaling_list_flag tech hallapur
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 );
  }
#1 fixed Wedgelet pattern generation process int/float mismatch tech tech
Description

Introduced by m22570: Mismatch with software related to floating point /integer aritmetics in wedgelet pattern generation process. It is preferred to have integer arithmetics in the software.

#2 fixed Wedgelet list lookup, mismatch tech tech
Description

Introduced by m22570 Draft/Software mismatch in Wedgelet direction derivation process and software uses wedgelet lookup list for deriving orientation.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.